tbrehm
2008-07-09 a57e0682a07f00d72d476c6b6027c936d268beb5
Added force to rc update script for the bastille firewall when the firewall is deactivated or removed.
1 files modified
4 ■■■■ changed files
server/plugins-available/firewall_plugin.inc.php 4 ●●●● patch | view | raw | blame | history
server/plugins-available/firewall_plugin.inc.php
@@ -102,7 +102,7 @@
            $app->log('Restarting the firewall',LOGLEVEL_DEBUG);
        } else {
            exec('/etc/init.d/bastille-firewall stop');
            if(@is_file('/etc/debian_version')) exec('update-rc.d bastille-firewall remove');
            if(@is_file('/etc/debian_version')) exec('update-rc.d -f bastille-firewall remove');
            $app->log('Stopping the firewall',LOGLEVEL_DEBUG);
        }
        
@@ -113,7 +113,7 @@
        global $app, $conf;
        
        exec('/etc/init.d/bastille-firewall stop');
        if(@is_file('/etc/debian_version')) exec('update-rc.d bastille-firewall remove');
        if(@is_file('/etc/debian_version')) exec('update-rc.d -f bastille-firewall remove');
        $app->log('Stopping the firewall',LOGLEVEL_DEBUG);
        
    }