fix: remove invalid gss-tsig directive from nsupdate input
Some checks failed
build / build (push) Has been cancelled

This commit is contained in:
Laurence 2026-05-24 18:27:08 +01:00
parent 473855e59a
commit a0a588f63b

View file

@ -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