Subversion Repositories ALCASAR

Compare Revisions

Ignore whitespace Rev 601 → Rev 604

/web/acc/admin/network.php
109,10 → 109,12
if ($action == "start"){
exec("sudo /sbin/chkconfig --add $service");
file_put_contents(ALCASAR_NETWORK, str_replace('SSH=off', 'SSH=on', file_get_contents(ALCASAR_NETWORK)));
exec ("sudo /usr/local/bin/alcasar-iptables.sh");
}
if ($action == "stop"){
exec("sudo /sbin/chkconfig --del $service");
file_put_contents(ALCASAR_NETWORK, str_replace('SSH=on', 'SSH=off', file_get_contents(ALCASAR_NETWORK)));
exec ("sudo /usr/local/bin/alcasar-iptables.sh");
}
}
return $retstatus;