Fix: correctly check if environment variables are set
This commit is contained in:
parent
e295e915d8
commit
e5a8d2d21b
@ -10,7 +10,7 @@ if [ -f "/etc/sshutter.conf" ]; then
|
||||
fi
|
||||
|
||||
# Check if args are given
|
||||
if [ "$WHITELIST" -eq "" ] || [ "$PORT" -eq "" ] || [ "$TARGET" -eq "" ]; then
|
||||
if [ "$WHITELIST" == "" ] || [ "$PORT" == "" ] || [ "$TARGET" == "" ]; then
|
||||
echo "Error: you need to specify WHITELIST, PORT and TARGET, either in /etc/sshutter.conf or through environment variables." 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user