minor loopback validy check fix

This commit is contained in:
root 2018-08-09 12:49:26 +00:00
parent 3592ea524b
commit fbb3ac8d6f
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ case "$1" in
echo "LOOPBACK NOT CONFIGURED, aborting..."
exit 2
fi
if [[ $LOOPBACKv4 = "10.1."* ]]; then
if [[ $LOOPBACKv4 != "10.1."* ]]; then
echo "only 10.1.x.y loopbacks supported at the moment"
exit 3
fi