]> git.ipfire.org Git - people/teissler/ipfire-2.x.git/commitdiff
firewall: rules.pl: Remove command line args parsing and rest from old debugging...
authorMichael Tremer <michael.tremer@ipfire.org>
Sat, 1 Mar 2014 17:07:39 +0000 (18:07 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Sat, 1 Mar 2014 17:07:39 +0000 (18:07 +0100)
config/firewall/rules.pl

index 6bb9ea0afcf8a18296e57dcb46aa67983b18b74c..d8ca67dd8e7df129e52c4c19dc6db863dca539c4 100755 (executable)
@@ -85,38 +85,21 @@ open (CONN1,"/var/ipfire/red/local-ipaddress");
 my $redip = <CONN1>;
 close(CONN1);
 
 my $redip = <CONN1>;
 close(CONN1);
 
-#################
-#    DEBUG/TEST #
-#################
-my $MODE=!$DEBUG;     # 0 - normal operation
-                # 1 - print configline and rules to console
-                #
-#################
-my $param=shift;
-
-if($param eq 'flush'){
-       if ($MODE eq '1'){
-               print " Flushing chains...\n";
-       }
-       &flush;
-}else{
-       if ($MODE eq '1'){
-               print " Flushing chains...\n";
-       }
-       &flush;
-       if ($MODE eq '1'){
-               print " Preparing rules...\n";
-       }
-       &preparerules;
-       if($MODE eq '0'){
-               if ($fwdfwsettings{'POLICY'} eq 'MODE1'){
-                       &p2pblock;
-                       run("/usr/sbin/firewall-policy");
-               }elsif($fwdfwsettings{'POLICY'} eq 'MODE2'){
-                       &p2pblock;
-                       run("/usr/sbin/firewall-policy");
-               }
-       }
+# MAIN
+&main();
+
+sub main {
+       # Flush all chains.
+       &flush();
+
+       # Reload firewall rules.
+       &preparerules();
+
+       # Load P2P block rules.
+       &p2pblock();
+
+       # Reload firewall policy.
+       run("/usr/sbin/firewall-policy");
 }
 
 sub run {
 }
 
 sub run {