mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-08 16:54:10 +01:00
Update prog.footer.suse to match prog.footer
git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@3606 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
parent
a371bd049c
commit
8eff8f0309
@ -62,6 +62,7 @@ case "$COMMAND" in
|
||||
progress_message3 "Starting Shorewall...."
|
||||
define_firewall
|
||||
status=$?
|
||||
[ $status = 0 -a -n "$SUBSYSLOCK" ] && touch $SUBSYSLOCK
|
||||
progress_message3 "done."
|
||||
fi
|
||||
;;
|
||||
@ -69,6 +70,7 @@ case "$COMMAND" in
|
||||
progress_message3 "Stopping Shorewall...."
|
||||
stop_firewall
|
||||
status=0
|
||||
[ -n "$SUBSYSLOCK" ] && rm -f $SUBSYSLOCK
|
||||
progress_message3 "done."
|
||||
;;
|
||||
restart)
|
||||
@ -86,11 +88,13 @@ case "$COMMAND" in
|
||||
restore)
|
||||
restore_firewall
|
||||
status=$?
|
||||
[ $status = 0 -a -n "$SUBSYSLOCK" ] && touch $SUBSYSLOCK
|
||||
;;
|
||||
clear)
|
||||
progress_message3 "Clearing Shorewall...."
|
||||
clear_firewall
|
||||
status=0
|
||||
[ -n "$SUBSYSLOCK" ] && rm -f $SUBSYSLOCK
|
||||
progress_message3 "done."
|
||||
;;
|
||||
status)
|
||||
|
Loading…
Reference in New Issue
Block a user