From eb15d0411f5926de53f4638c04ef43cf92ba60ba Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Sun, 1 Jan 2012 21:16:16 -0800 Subject: [PATCH] Correct 'debug' and 'trace' of lite start/restart Signed-off-by: Tom Eastep --- Shorewall/lib.cli | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shorewall/lib.cli b/Shorewall/lib.cli index f333f3bfe..7e0aa5bcc 100644 --- a/Shorewall/lib.cli +++ b/Shorewall/lib.cli @@ -2658,7 +2658,7 @@ start_command() { [ -n "$g_nolock" ] || mutex_on if [ -x ${VARDIR}/firewall ]; then - run_it ${VARDIR}/firewall $debugging start + run_it ${VARDIR}/firewall $g_debugging start rc=$? else error_message "${VARDIR}/firewall is missing or is not executable" @@ -2779,7 +2779,7 @@ restart_command() { [ -n "$g_nolock" ] || mutex_on if [ -x ${VARDIR}/firewall ]; then - run_it ${VARDIR}/firewall $debugging restart + run_it ${VARDIR}/firewall $g_debugging restart rc=$? else error_message "${VARDIR}/firewall is missing or is not executable"