nixos/routing-common: Add missing ttl param to DDNS update

This commit is contained in:
2026-07-12 17:15:57 +01:00
parent 90cc2d53f1
commit f8dbd99a7b
@@ -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__':