From 1d4f0f289f434dbe6b59d326bdaf8943b4112f8a Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Sun, 24 May 2020 19:32:01 +0200 Subject: [PATCH] Raised update interval to 30 seconds --- src/ddns_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ddns_update.py b/src/ddns_update.py index a62bd05..448c65e 100755 --- a/src/ddns_update.py +++ b/src/ddns_update.py @@ -75,7 +75,7 @@ def loop_ddns_update(host, key): last_ip = current_ip else: log.debug("skipped update, ip address unchanged") - sleep(5) + sleep(30) if __name__ == "__main__":