1
0
mirror of https://github.com/Luzifer/rootzone.git synced 2024-09-19 09:22:57 +00:00

Fix broken record and exit on error

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2019-05-25 17:22:20 +02:00
parent 4b028c4edb
commit 3143b16225
Signed by: luzifer
GPG Key ID: DC2729FDD34BE99E
2 changed files with 5 additions and 5 deletions

View File

@ -46,7 +46,7 @@ func init() {
"iana-tld-list": "https://data.iana.org/TLD/tlds-alpha-by-domain.txt",
"internic-root": "https://www.internic.net/domain/named.root",
"opennic-filter": strings.Join([]string{".", "opennic.glue."}, ","),
"opennic-root": "75.127.96.89:53",
"opennic-root": "75.127.96.89",
})
if err := rconfig.ParseAndValidate(&cfg); err != nil {
log.Fatalf("Unable to parse commandline options: %s", err)
@ -128,7 +128,7 @@ func setRootsFromTLDs(roots map[string][]string, rootsMutex *sync.Mutex, tlds []
masters, err := resolver(tld)
if err != nil {
log.WithError(err).WithField("zone", tld).Error("Unable to retrieve zone masters")
log.WithError(err).WithField("zone", tld).Fatal("Unable to retrieve zone masters")
return
}

View File

@ -13,7 +13,7 @@ func getOpenNICTLDs() ([]string, error) {
m := new(dns.Msg)
m.SetQuestion("tlds.opennic.glue.", dns.TypeTXT)
r, _, err := c.Exchange(m, cfg.OpenNICRoot)
r, _, err := c.Exchange(m, cfg.OpenNICRoot+":53")
if err != nil {
return nil, errors.Wrap(err, "Could not query nameservers")
}
@ -42,7 +42,7 @@ func getOpenNICZoneMasters(tld string) ([]string, error) {
m := new(dns.Msg)
m.SetQuestion(tld+"opennic.glue.", dns.TypeCNAME)
r, _, err := c.Exchange(m, cfg.OpenNICRoot)
r, _, err := c.Exchange(m, cfg.OpenNICRoot+":53")
if err != nil {
return nil, errors.Wrap(err, "Could not query nameservers")
}
@ -65,7 +65,7 @@ func getOpenNICZoneMasters(tld string) ([]string, error) {
m = new(dns.Msg)
m.SetQuestion(master, dns.TypeA)
r, _, err := c.Exchange(m, cfg.OpenNICRoot)
r, _, err := c.Exchange(m, cfg.OpenNICRoot+":53")
if err != nil {
return nil, errors.Wrap(err, "Could not query nameservers")
}