From 18f947eb2fd90d1bc77605bbf1e70df101462de5 Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Fri, 6 Jul 2012 07:28:29 -0700 Subject: [PATCH] =?UTF-8?q?Apply=20patch=20from=20Daniel=20Mei=C3=9Fner?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Corrects STARTUP_ENABLED=No error message Signed-off-by: Tom Eastep --- Shorewall/lib.cli-std | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shorewall/lib.cli-std b/Shorewall/lib.cli-std index bd9d0d325..1e68e705d 100644 --- a/Shorewall/lib.cli-std +++ b/Shorewall/lib.cli-std @@ -181,7 +181,7 @@ get_config() { if [ "$2" = Yes ]; then case $STARTUP_ENABLED in No|no|NO) - echo " ERROR: $g_product startup is disabled. To enable startup, set STARTUP_ENABLED=Yes in ${CONFDIR}/${g_program}.conf" >&2 + echo " ERROR: $g_product startup is disabled. To enable startup, set STARTUP_ENABLED=Yes in ${g_confdir}/${g_program}.conf" >&2 exit 2 ;; Yes|yes|YES)