Reordered IP address section.

Always display  IP being used whether provided or detected.
This commit is contained in:
Asif Bacchus 2018-09-13 21:02:31 -06:00
parent d9804ee8ec
commit 4d28f068f0
1 changed files with 3 additions and 2 deletions

View File

@ -192,12 +192,13 @@ if [ -z "$ipAddress" ]; then
echo -e "\e[1;36m(set to IP6 mode)\e[0m"
ipAddress=$(curl -s http://ipv6.icanhazip.com)
fi
# check if curl reported any errors
ipLookupResult=$(echo "$?")
if [ "$ipLookupResult" -ne 0 ]; then
quit 201
else
echo -e "\e[0;36mUsing IP address: $ipAddress"
fi
else
echo -e "\e[0;36mUsing IP address: $ipAddress"
fi