aboutsummaryrefslogtreecommitdiffstats
path: root/packages/ntop
diff options
context:
space:
mode:
Diffstat (limited to 'packages/ntop')
-rw-r--r--packages/ntop/ntop.xml4
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/ntop/ntop.xml b/packages/ntop/ntop.xml
index 5a59526b..56cc73cf 100644
--- a/packages/ntop/ntop.xml
+++ b/packages/ntop/ntop.xml
@@ -53,6 +53,8 @@
</field>
</fields>
<custom_add_php_command>
+ conf_mount_rw();
+ config_lock();
if($_POST['password'] == $_POST['passwordagain']) {
$interfaces = " -i ";
$ifaces=$_POST['iface'];
@@ -70,6 +72,8 @@
fwrite($fout, "#!/bin/sh\n\n");
fwrite($fout, "/usr/local/bin/ntop " . $interfaces . " -u root -d --ipv4 -M\n\n");
fclose($fout);
+ conf_mount_ro();
+ config_unlock();
system("chmod 555 /usr/local/etc/rc.d/ntop.sh");
system("killall ntop 2>/dev/null");
system("/usr/local/etc/rc.d/ntop.sh");