guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: hydra: dns: Add "issues" and change guix.gnu.org to point to berl


From: Ludovic Courtès
Subject: 02/02: hydra: dns: Add "issues" and change guix.gnu.org to point to berlin.
Date: Wed, 1 May 2019 06:31:42 -0400 (EDT)

civodul pushed a commit to branch master
in repository maintenance.

commit fc6111bfc118885dcb728853f2b38c373e19267c
Author: Ludovic Courtès <address@hidden>
Date:   Wed May 1 12:30:44 2019 +0200

    hydra: dns: Add "issues" and change guix.gnu.org to point to berlin.
    
    * hydra/modules/sysadmin/dns.scm (berlin-ip6): New variable.
    (guix.gnu.org.zone): Change "@" to point to berlin rather than gnu.org.
    Add "issues" A and AAAA records.
---
 hydra/modules/sysadmin/dns.scm | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/hydra/modules/sysadmin/dns.scm b/hydra/modules/sysadmin/dns.scm
index 7a09357..a6e32b4 100644
--- a/hydra/modules/sysadmin/dns.scm
+++ b/hydra/modules/sysadmin/dns.scm
@@ -47,18 +47,23 @@
 (define hydra-ip4 "18.4.89.46")
 (define bayfront-ip4 "185.233.100.56")
 (define berlin-ip4 "141.80.181.40")
+(define berlin-ip6 "fe80::8218:44ff:fee8:f7e0")
 
 (define-zone-entries guix.gnu.org.zone
 ;; Name       TTL Class Type Data
-  ("@"        ""  "IN"  "A"      gnu.org-ip4)
-  ("@"        ""  "IN"  "AAAA"   gnu.org-ip6)
+  ("@"        ""  "IN"  "A"      berlin-ip4)
+  ("@"        ""  "IN"  "AAAA"   berlin-ip6)
   ("ns1"      ""  "IN"  "A"      bayfront-ip4)
   ("ns2"      ""  "IN"  "A"      berlin-ip4)
+
+  ;; Machines.
   ("hydra"    ""  "IN"  "A"      hydra-ip4)
   ("berlin"   ""  "IN"  "A"      berlin-ip4)
   ("bayfront" ""  "IN"  "A"      bayfront-ip4)
 
-  ;; ci. as an alias for berlin.
+  ;; Services.
+  ("issues"   ""  "IN"  "A"      berlin-ip4)
+  ("issues"   ""  "IN"  "AAAA"   berlin-ip6)
   ("ci"       ""  "IN"  "CNAME"  "berlin")
 
   ;; This record is required in order to prove to Amazon ACM that we



reply via email to

[Prev in Thread] Current Thread [Next in Thread]