From 8e43c63cc03b2eea26ca4ef33a959e43cbaf8ad3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Schneider?= Date: Mon, 3 Feb 2014 10:15:15 +0100 Subject: [PATCH] eofirewall: exit 0 and not 1 if configuration doesn't exist --- eofirewall | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eofirewall b/eofirewall index 69d9bcc..575ce95 100755 --- a/eofirewall +++ b/eofirewall @@ -22,7 +22,8 @@ chain_exists() if [ -f "/etc/firewall/firewall.conf" ]; then source /etc/firewall/firewall.conf else - abort "No configuration file /etc/firewall/firewall.conf" + log_warning_msg "No configuration file /etc/firewall/firewall.conf" + exit 0 fi flush()