From 43f3c547b7e70386696fbf0db5a7cbd42078b432 Mon Sep 17 00:00:00 2001 From: Tom Laermans Date: Tue, 20 Sep 2011 15:48:12 +0000 Subject: [PATCH] typo fix in addhost git-svn-id: http://www.observium.org/svn/observer/trunk@2524 61d68cd4-352d-0410-923a-c4978735b2b8 --- addhost.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/addhost.php b/addhost.php index 96b59e1534..f9fe0b7370 100755 --- a/addhost.php +++ b/addhost.php @@ -48,19 +48,20 @@ if (isset($argv[1]) && $argv[1]) } $device_id = addHost($host, $community, $snmpver, $port = '161', $transport = 'udp'); - if ($device_id) { + if ($device_id) + { $device = device_by_id_cache($device_id); echo("Added device ".$device['hostname']." (".$device['device_id'].")\n"); } } else { -print Console_Color::convert(" + print Console_Color::convert(" Observium v".$config['version']." Add Host Tool Usage: ./addhost.php <%Whostname%n> [community] [v1|v2c] [port] [" . join("|",$config['snmp']['transports']) . "] -%rRemeber to discover the host afterwards.%n +%rRemember to run discovery for the host afterwards.%n "); }