From a0a588f63bd3914ad91414228d2e7216f0335580 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 30e5ec5..59387c6 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