1
0
mirror of https://gitlab.com/shorewall/code.git synced 2025-07-16 06:15:27 +02:00

init: Don't set the 'file' var needlessly

Signed-off-by: Matt Darfeuille <matdarf@gmail.com>
Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
Matt Darfeuille
2016-12-19 08:56:41 +01:00
committed by Tom Eastep
parent 44e9c7780f
commit fa6167797d

@ -124,10 +124,8 @@ done
if [ $# -eq 0 ]; then
if [ -f ./shorewallrc ]; then
. ./shorewallrc
file=./shorewallrc
elif [ -f ~/.shorewallrc ]; then
. ~/.shorewallrc || exit 1
file=~/.shorewallrc
elif [ -f /usr/share/shorewall/shorewallrc ]; then
. /usr/share/shorewall/shorewallrc
else