From fd16ce2c0a14c90811dea040a9335b9c83a09b77 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sat, 24 Sep 2005 23:29:57 +0000 Subject: Use a comma to seperate. --- packages/ntop/ntop.xml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'packages/ntop') diff --git a/packages/ntop/ntop.xml b/packages/ntop/ntop.xml index 01ef37ba..86b29264 100644 --- a/packages/ntop/ntop.xml +++ b/packages/ntop/ntop.xml @@ -69,14 +69,18 @@ $ifaces_final = ""; if($ntop_config['password'] and $ntop_config['passwordagain']) { if($ntop_config['password'] == $ntop_config['passwordagain']) { + $first = 0; foreach($_POST['interface_array'] as $iface) { $if = convert_friendly_interface_to_real_interface_name($iface); if($if) { - $ifaces_final .= " -i " . $if; + $ifaces_final .= " " . $if; + if($first == 1) + $ifaces_final .= ","; + $first = 1; } } exec("/usr/local/bin/ntop --set-admin-password=" . $_POST['password'] . " &", $ntopout); - $start = "/usr/local/bin/ntop " . $ifaces_final . " -u root -d --ipv4 -M -x 8102 -X 8192 &"; + $start = "/usr/local/bin/ntop -i " . $ifaces_final . " -u root -d --ipv4 -M -x 8102 -X 8192 &"; write_rcfile(array( "file" => "ntop.sh", "start" => $start, -- cgit v1.2.3