Confirm current IP address.

This commit is contained in:
Timothy Allen 2016-11-29 21:20:05 +02:00
parent d8d73c34b1
commit 5474e037c8
1 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ host=desktop
secret=""
ip=$(wget -q -O - http://treehouse.org.za/ip)
set_ip=$(dig +short ${host}.${zone})
if [ -z ${ip} ] || [ -z ${cache} ]; then
exit;
@ -16,7 +17,7 @@ if [ -f "${HOME}/${cache}" ]; then
old_ip=$(cat "${HOME}/${cache}")
fi
if [ "${ip}" = "${old_ip}" ]; then
if [ "${set_ip}" = "${ip}" ] && [ "${ip}" = "${old_ip}" ]; then
exit;
else
rm -f "${HOME}/${cache}"