From d3272846b4f67575c901ffcda5a52e6db8e2e4aa Mon Sep 17 00:00:00 2001 From: niten Date: Sun, 15 Oct 2023 20:49:20 -0700 Subject: [PATCH] Remove trace --- zone-to-zonefile.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/zone-to-zonefile.nix b/zone-to-zonefile.nix index 953c8c4..bc126bb 100644 --- a/zone-to-zonefile.nix +++ b/zone-to-zonefile.nix @@ -73,8 +73,7 @@ let let fqdn = hostToFqdn record.host; in "_${service}._${protocol} IN SRV ${toString record.priority} ${ toString record.weight - } ${toString record.port} ${trace "${record.host} -> ${fqdn}" fqdn}") - records); + } ${toString record.port} ${fqdn}") records); makeSrvProtocolRecords = protocol: serviceRecords: joinLines (mapAttrsToList (makeSrvRecords protocol) serviceRecords);