Hi,
When updating DNS records for one domain like this
fly dns-records import example.com /etc/bash/flyctl/example.com
with this kind of zonefile
$ORIGIN example.com.
@ 3600 IN SOA ns1.flydns.io admin.dnsimple.com 1670069594 86400 7200 604800 300
@ 3600 IN NS ns1.flydns.io.
@ 3600 IN NS ns2.flydns.io.
@ 3600 IN NS ns3.flydns.io.
@ 3600 IN NS ns4.flydns.io.
@ 3600 IN NS custom-ns-1.example.com.
@ 3600 IN NS custom-ns-2.example.com.
@ 3600 IN A 127.0.0.1
www 600 IN A 127.0.0.1
I found the report is OK but actually the two extra NS records are not updated
Zonefile import report for example.com
Imported from /etc/bash/flyctl/example.com
0 warnings
2 changes
-> Created @ 86400 IN NS custom-ns-1.example.com.
-> Created @ 86400 IN NS custom-ns-2.example.com.
;; QUESTION SECTION: ;example.com. IN NS
;example.com. IN NS
;; ANSWER SECTION:
example.com. 3600 IN NS ns1.flydns.io.
example.com. 3600 IN NS ns2.flydns.io.
example.com. 3600 IN NS ns3.flydns.io.
example.com. 3600 IN NS ns4.flydns.io.
Is this a little glitch?