IP: removed redundant mode notification. Logged IP being used.

This commit is contained in:
Asif Bacchus 2018-09-13 21:26:24 -06:00
parent d9d5f71b5a
commit ea979c5c93

View File

@ -217,12 +217,10 @@ mapfile -t cfDetails < "$accountFile"
## Get current IP address, if not provided in parameters ## Get current IP address, if not provided in parameters
if [ -z "$ipAddress" ]; then if [ -z "$ipAddress" ]; then
echo -e "\e[0;36mNo IP address for update provided. Detecting" \ echo -e "\e[0;36mNo IP address for update provided. Detecting" \
"this machine's IP address..." "this machine's IP address..." >> $logVerboseFile
if [ $ip4 -eq 1 ]; then if [ $ip4 -eq 1 ]; then
echo -e "\e[1;36m(set to IP4 mode)\e[0m"
ipAddress=$(curl -s http://ipv4.icanhazip.com) ipAddress=$(curl -s http://ipv4.icanhazip.com)
elif [ $ip6 -eq 1 ]; then elif [ $ip6 -eq 1 ]; then
echo -e "\e[1;36m(set to IP6 mode)\e[0m"
ipAddress=$(curl -s http://ipv6.icanhazip.com) ipAddress=$(curl -s http://ipv6.icanhazip.com)
fi fi
# check if curl reported any errors # check if curl reported any errors
@ -231,7 +229,7 @@ if [ -z "$ipAddress" ]; then
quit 201 quit 201
fi fi
else else
echo -e "\e[0;36mUsing IP address: $ipAddress" echo -e "\e[0;36mUsing IP address: $ipAddress" >> $logFile
fi fi