2
0
Fork 0
mirror of git://git.savannah.gnu.org/guix/maintenance.git synced 2023-12-14 03:33:04 +01:00

hydra: dns: Add entries for lakeside.

This is a machine hosted by Hetzner, responsible for storing and
serving nars for bordeaux.guix.gnu.org.

* hydra/modules/sysadmin/dns.scm (lakeside-ip4, lakeside-ip6): New
variables.
(guix.gnu.org.zone): Add entries for lakeside, bump serial.
This commit is contained in:
Christopher Baines 2022-02-01 19:11:22 +00:00
parent 456e174bd0
commit 18f11364eb
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -48,6 +48,8 @@
(define hydra-ip4 "18.4.89.46")
(define bayfront-ip4 "185.233.100.56")
(define bayfront-ip6 "2a0c:e300::58")
(define lakeside-ip4 "176.9.98.253")
(define lakeside-ip6 "2a01:4f8:151:40cc::")
(define berlin-ip4 "141.80.181.40")
(define milano-guix-1-ip4 "159.149.133.203")
(define fosshost-1-ip4 "147.75.35.153")
@ -96,6 +98,8 @@
("berlin" "" "IN" "A" berlin-ip4)
("bayfront" "" "IN" "A" bayfront-ip4)
("bayfront" "" "IN" "AAAA" bayfront-ip6)
("lakeside" "" "IN" "A" lakeside-ip4)
("lakeside" "" "IN" "AAAA" lakeside-ip6)
("fosshost1" "" "IN" "A" fosshost-1-ip4)
("fosshost2" "" "IN" "A" fosshost-2-ip4)
("overdrive1" "" "IN" "A" overdrive1-ip4)
@ -128,4 +132,4 @@
(origin "guix.gnu.org")
(ns primary-ns)
(entries guix.gnu.org.zone)
(serial 2021122114)))))
(serial 2022021910)))))