Fix bug in old config detection

This commit is contained in:
Gregory Colpart 2015-09-13 20:21:55 +02:00
parent 4ea10ccc83
commit 52f177303c
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ $IPT -A LOG_ACCEPT -j ACCEPT
oldconfigfile="/etc/firewall.rc"
configfile="/etc/default/minifirewall"
if ! test -f $oldconfigfile; then
if test -f $oldconfigfile; then
echo "$oldconfigfile is deprecated, rename to $configfile" >&2
exit 1
fi