From f8dbd99a7b117e15200562687f760e4cc97f645b Mon Sep 17 00:00:00 2001 From: Jack O'Sullivan Date: Sun, 12 Jul 2026 17:15:57 +0100 Subject: [PATCH] nixos/routing-common: Add missing ttl param to DDNS update --- nixos/boxes/home/routing-common/dns_update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/boxes/home/routing-common/dns_update.py b/nixos/boxes/home/routing-common/dns_update.py index 83847ee..c54e51d 100755 --- a/nixos/boxes/home/routing-common/dns_update.py +++ b/nixos/boxes/home/routing-common/dns_update.py @@ -33,7 +33,7 @@ def main(): print(f'Updating {args.record} -> {address}') cf.dns.records.edit( - zone_id=zone.id, dns_record_id=record.id, name=args.record, + zone_id=zone.id, dns_record_id=record.id, name=args.record, ttl=60, type='A', content=address) if __name__ == '__main__':