fix: remove invalid gss-tsig directive from nsupdate input
Some checks failed
build / build (push) Failing after 3m13s

This commit is contained in:
Laurence 2026-05-24 18:27:08 +01:00
parent bdfd8027f4
commit 69048df864

View file

@ -55,7 +55,7 @@ def get_traefik_hostnames():
return hostnames return hostnames
def nsupdate(commands): def nsupdate(commands):
input_data = f"gss-tsig\n{commands}\n" input_data = f"{commands}\n"
result = subprocess.run( result = subprocess.run(
['nsupdate', '-g'], ['nsupdate', '-g'],
input=input_data, capture_output=True, text=True input=input_data, capture_output=True, text=True