Update hexanet servers

Fix registry commit checks following server migration
This commit is contained in:
Simon Marsh 2020-07-05 11:07:30 +01:00
parent c0a9793b51
commit 1eae7e5bac
No known key found for this signature in database
GPG Key ID: 30B29A716A54DBB3

24
dns.go
View File

@ -100,7 +100,7 @@ var dns_servers = []*DNSServer{
"172.23.0.53:53", 0},
&DNSServer{"recursive", "anycast", "a3.recursive-servers.dn42", 6,
"[fd42:d42:d42:53::1]:53", 0},
// burble
&DNSServer{"delegation", "burble", "b.delegation-servers.dn42", 4,
@ -148,7 +148,7 @@ var dns_servers = []*DNSServer{
&DNSServer{"jrb0001", "jrb0001", "us-4", 6, "[fd42:5d71:219:c:a526:d935:281e:22d6]:53", 0},
&DNSServer{"jrb0001", "jrb0001", "us-5", 6, "[fd42:5d71:219:d:a526:d935:281e:22d6]:53", 0},
&DNSServer{"jrb0001", "jrb0001", "kr-1", 6, "[fd42:5d71:219:e:a526:d935:281e:22d6]:53", 0},
// Kioubit
&DNSServer{"delegation", "Kioubit", "k.delegation-servers.dn42", 4,
@ -160,19 +160,21 @@ var dns_servers = []*DNSServer{
&DNSServer{"recursive", "Kioubit", "k.recursive-servers.dn42", 6,
"[fdcf:8538:9ad5:1111::1]:53", 0},
&DNSServer{"Kioubit", "Kioubit", "de2", 6, "[fdcf:8538:9ad5:1111::3]:53", 0},
&DNSServer{"Kioubit", "Kioubit", "de2", 6, "[fdcf:8538:9ad5:1111::3]:53", 0},
&DNSServer{"Kioubit", "Kioubit", "lith1", 6, "[fdcf:8538:9ad5:1111::4]:53", 0},
&DNSServer{"Kioubit", "Kioubit", "us3", 6, "[fdcf:8538:9ad5:1111::5]:53", 0},
&DNSServer{"Kioubit", "Kioubit", "lux1", 6, "[fdcf:8538:9ad5:1111::6]:53", 0},
&DNSServer{"Kioubit", "Kioubit", "kor1", 6, "[fdcf:8538:9ad5:1111::7]:53", 0},
&DNSServer{"Kioubit", "Kioubit", "us3", 6, "[fdcf:8538:9ad5:1111::5]:53", 0},
&DNSServer{"Kioubit", "Kioubit", "lux1", 6, "[fdcf:8538:9ad5:1111::6]:53", 0},
&DNSServer{"Kioubit", "Kioubit", "kor1", 6, "[fdcf:8538:9ad5:1111::7]:53", 0},
// foxcpp = hexanet
&DNSServer{"delegation", "foxcpp", "h.delegation-servers.dn42", 6,
"[fda6:2474:15a4::54]:53", 0},
&DNSServer{"Hexanet", "foxcpp", "ns1", 6, "[fda6:2474:15a4:445e::1]:53", 0},
&DNSServer{"Hexanet", "foxcpp", "ns2", 6, "[fda6:2474:15a4:22f7::1]:53", 0},
&DNSServer{"Hexanet", "foxcpp", "ns3", 6, "[fda6:2474:15a4:1084::1]:53", 0},
&DNSServer{"Hexanet", "foxcpp", "epsilon", 6, "[fda6:2474:15a4:445e::1]:53", 0},
&DNSServer{"Hexanet", "foxcpp", "iota", 6, "[fda6:2474:15a4:22f7::1]:53", 0},
&DNSServer{"Hexanet", "foxcpp", "gamma", 6, "[fda6:2474:15a4:1084::1]:53", 0},
&DNSServer{"Hexanet", "foxcpp", "sigma", 6, "[fda6:2474:15a4:dd05::1]:53", 0},
&DNSServer{"Hexanet", "foxcpp", "omicron", 6, "[fda6:2474:15a4:d788::1]:53", 0},
// yamakaja
@ -623,7 +625,7 @@ func (m *DNSCommitMetrics) FetchMasterCommit() (string, error) {
}
for _, c := range mc {
if c.URI == "https://git.dn42.us/dn42/registry.git" {
if strings.HasSuffix(c.URI, "registry.git") {
return strings.ToLower(c.Commit), nil
}
}