mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-25 17:13:11 +01:00
Syncronize shorewall-lite activities
Conflicts: Shorewall-lite/shorewall-lite Shorewall6-lite/shorewall6-lite Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
parent
a982a29a5c
commit
8b8a297798
@ -93,7 +93,7 @@ for PRODUCT in $PRODUCTS; do
|
||||
VARDIR=/var/lib/$PRODUCT
|
||||
[ -f /etc/$PRODUCT/vardir ] && . /etc/$PRODUCT/vardir
|
||||
if [ -x $VARDIR/firewall ]; then
|
||||
$VARDIR/firewall -V0 $COMMAND $IFACE
|
||||
/sbin/$PRODUCT -v0 $COMMAND $IFACE
|
||||
fi
|
||||
done
|
||||
|
||||
|
@ -635,6 +635,11 @@ case "$COMMAND" in
|
||||
run_it $g_firewall $debugging $COMMAND
|
||||
[ -n "$nolock" ] || mutex_off
|
||||
;;
|
||||
up|down)
|
||||
[ -n "$nolock" ] || mutex_on
|
||||
run_it $g_firewall $debugging $COMMAND
|
||||
[ -n "$nolock" ] || mutex_off
|
||||
;;
|
||||
reset)
|
||||
verify_firewall_script
|
||||
[ -n "$nolock" ] || mutex_on
|
||||
|
@ -1635,6 +1635,12 @@ case "$COMMAND" in
|
||||
run_it $g_firewall $g_debugging $COMMAND
|
||||
[ -n "$nolock" ] || mutex_off
|
||||
;;
|
||||
up|down)
|
||||
[ -x $g_firewall ] || fatal_error "Shorewall has never been started"
|
||||
mutex_on
|
||||
run_it $g_firewall $g_debugging $nolock $@
|
||||
mutex_off
|
||||
;;
|
||||
reset)
|
||||
get_config
|
||||
shift
|
||||
|
@ -619,6 +619,11 @@ case "$COMMAND" in
|
||||
run_it $g_firewall $debugging $COMMAND
|
||||
[ -n "$nolock" ] || mutex_off
|
||||
;;
|
||||
up|down)
|
||||
[ -n "$nolock" ] || mutex_on
|
||||
run_it $g_firewall $debugging $@
|
||||
[ -n "$nolock" ] || mutex_off
|
||||
;;
|
||||
restart)
|
||||
shift
|
||||
restart_command $@
|
||||
|
@ -1548,6 +1548,11 @@ case "$COMMAND" in
|
||||
run_it $g_firewall $g_debugging $COMMAND
|
||||
[ -n "$nolock" ] || mutex_off
|
||||
;;
|
||||
up|down)
|
||||
mutex_on
|
||||
run_it $g_firewall $g_debugging $nolock $@
|
||||
mutex_off
|
||||
;;
|
||||
reset)
|
||||
get_config
|
||||
shift
|
||||
|
Loading…
Reference in New Issue
Block a user