From 8f82d7f161393c8c985f885a18601f01507f7c53 Mon Sep 17 00:00:00 2001 From: teastep Date: Wed, 21 Mar 2007 16:21:37 +0000 Subject: [PATCH] Avoid second append of the 'stopped' file git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@5606 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- New/compiler.pl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/New/compiler.pl b/New/compiler.pl index c2c62f043..66362333c 100755 --- a/New/compiler.pl +++ b/New/compiler.pl @@ -413,7 +413,7 @@ stop_firewall() { emit 'progress_message2 IP Forwarding Disabled!'; } - append_file 'stopped'; + emit 'run_stopped_exit'; pop_indent; @@ -706,6 +706,9 @@ sub compile_firewall( $ ) { dump_chain_table if $ENV{DEBUG}; generate_script_3; finalize_object; + # + # And generate the auxilary config file + # generate_aux_config; }