From 2e9eed3dfe0fe744f18a879f70f5a5847d8056dc Mon Sep 17 00:00:00 2001 From: teastep Date: Tue, 12 Dec 2006 16:17:50 +0000 Subject: [PATCH] More error logging git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@5108 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- Shorewall-lite/shorewall-lite | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Shorewall-lite/shorewall-lite b/Shorewall-lite/shorewall-lite index 386b1f6df..e3dc9167d 100755 --- a/Shorewall-lite/shorewall-lite +++ b/Shorewall-lite/shorewall-lite @@ -192,6 +192,7 @@ start_command() { fi [ -n "$nolock" ] || mutex_off + [ $rc -eq 0 ] || logger "ERROR:Shorewall Lite start failed" exit $rc } @@ -366,6 +367,7 @@ restart_command() { fi [ -n "$nolock" ] || mutex_off + [ $rc -eq 0 ] || logger "ERROR:Shorewall Lite restart failed" return $rc }