From 69048df8640ece0aa80505f0acfacf2f70e5fb56 Mon Sep 17 00:00:00 2001 From: Laurence Date: Sun, 24 May 2026 18:27:08 +0100 Subject: [PATCH] fix: remove invalid gss-tsig directive from nsupdate input --- dns_sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dns_sync.py b/dns_sync.py index fc8426c..253c11c 100644 --- a/dns_sync.py +++ b/dns_sync.py @@ -55,7 +55,7 @@ def get_traefik_hostnames(): return hostnames def nsupdate(commands): - input_data = f"gss-tsig\n{commands}\n" + input_data = f"{commands}\n" result = subprocess.run( ['nsupdate', '-g'], input=input_data, capture_output=True, text=True