Compare commits

..

2 Commits

View File

@ -16,9 +16,6 @@ MY_IP_URL = "http://ifconfig.me"
domains = [DDNS_NC_URL, DDNS_WG_URL, DDNS_CR_URL, DDNS_GT_URL]
current_ip = requests.get(MY_IP_URL, timeout=15).text
registered_ip = socket.gethostbyname(GT_HOST)
while True:
try:
current_ip = requests.get(MY_IP_URL, timeout=15).text
@ -39,5 +36,5 @@ while True:
else:
print(f"No IP change detected (currently {current_ip}).")
finally:
print("Sleeping 10 minutes...")
sleep(1200)
print("Sleeping 5 minutes...")
sleep(300)