diff options
author | Bill Marquette <billm@pfsense.org> | 2005-03-17 05:44:31 +0000 |
---|---|---|
committer | Bill Marquette <billm@pfsense.org> | 2005-03-17 05:44:31 +0000 |
commit | 54778312c02dc3f525e85d9c21357d777cdc234e (patch) | |
tree | 63eb62c5836558fcebae2f7652a8b86be1aa052d | |
parent | b7dec3dd51c5a7a68e6955d4cf8493fad9075424 (diff) | |
download | pfsense-packages-54778312c02dc3f525e85d9c21357d777cdc234e.tar.gz pfsense-packages-54778312c02dc3f525e85d9c21357d777cdc234e.tar.bz2 pfsense-packages-54778312c02dc3f525e85d9c21357d777cdc234e.zip |
Clean up typos made by a drunk programmer :-P
-rw-r--r-- | packages/carp_settings.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/carp_settings.xml b/packages/carp_settings.xml index e73429e1..6d6db1b9 100644 --- a/packages/carp_settings.xml +++ b/packages/carp_settings.xml @@ -57,7 +57,7 @@ will be parsed and rendered for the user as a gui with input, and selectboxes. --> <fields> <field> - <fielddescr>Synchrnoize Enabled</fielddescr> + <fielddescr>Synchronize Enabled</fielddescr> <fieldname>pfsyncenabled</fieldname> <description>PFSync transfers state insertion, update, and deletion messages between firewalls. Each firewall sends these messages out via multicast on a specified interface, using the PFSYNC protocol (IP Protocol 240). It also listens on that interface for similar messages from other firewalls, and imports them into the local state table.</description> <type>checkbox</type> @@ -66,7 +66,7 @@ <fielddescr>Synchronize Interface</fielddescr> <fieldname>pfsyncinterface</fieldname> <type>interfaces_selection</type> - <description>If Synchronize State is enabled, it will utilize this interface for communication. NOTE! You must define a IP on each machin participating in this failver group. NOTE: You must have an IP assigned to the interface on any participating sync nodes.</description> + <description>If Synchronize State is enabled, it will utilize this interface for communication. NOTE! You must define a IP on each machine participating in this failover group. NOTE: You must have an IP assigned to the interface on any participating sync nodes.</description> </field> <field> <fielddescr>Load Balancing</fielddescr> @@ -113,7 +113,7 @@ <field> <fielddescr>Known Hosts</fielddescr> <fieldname>knownhosts</fieldname> - <description>Paste in your authorized hosts file generated from OpenSSH.</description> + <description>Paste in the /etc/ssh/ssh_host_dsa_key.pub file generated from the destination server.</description> <rows>4</rows> <cols>50</cols> <type>textarea</type> @@ -165,10 +165,10 @@ $vararrays = array("cmd" => "mkdir -p /root/.ssh"); http_post($synchronizetoip, $httpport, "/exec_raw.php", $vararrays); /* populate /root/.ssh/known_hosts */ - $vararrays = array("cmd" => "echo \"{$_POST['knownhosts']}\" > /root.ssh/known_hosts"); + $vararrays = array("cmd" => "echo \"{$_POST['knownhosts']}\" > /root/.ssh/known_hosts"); http_post($synchronizetoip, $httpport, "/exec_raw.php", $vararrays); /* populate /root/.ssh/authorized_keys */ - $vararrays = array("cmd" => "echo \"{$_POST['authorizedkeys']}\" > /root.ssh/authorized_keys"); + $vararrays = array("cmd" => "echo \"{$_POST['authorizedkeys']}\" > /root/.ssh/authorized_keys"); http_post($synchronizetoip, $httpport, "/exec_raw.php", $vararrays); } </custom_php_install_command> |