From 0885bc47acc909c545aee41d6e2e2258f630d803 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Tue, 3 Sep 2013 17:50:20 +0100 Subject: [PATCH] New domain odin.gg. Really silly vanity domain. --- Makefile | 6 +++++- hosts.lisp | 1 + odin.lisp | 21 +++++++++++++++++++++ 3 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 odin.lisp diff --git a/Makefile b/Makefile index eda4119..e03653f 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,6 @@ CHECKZONE = named-checkzone -i full \ MASTER = localhost inside_MASTER = precision - ifeq ($(MASTER),localhost) ZONEINST = userv zoneconf install else @@ -88,6 +87,11 @@ binswood_VIEWS = outside binswood_all_ZONES += binswood.org.uk binswood_all_ZONES += 27.165.10.in-addr.arpa +## odin.gg +ZONESETS += odin +odin_VIEWS = outside +odin_all_ZONES = odin.gg + ###-------------------------------------------------------------------------- ### Zone construction machinery. diff --git a/hosts.lisp b/hosts.lisp index b883e15..5b90533 100644 --- a/hosts.lisp +++ b/hosts.lisp @@ -10,6 +10,7 @@ (defhost mccoy.flatline.org.uk 80.74.241.31) (defhost mythic-ns1 69.56.173.190) (defhost mythic-ns2 93.93.128.67) +(defhost gandi-ns6 217.70.177.40) ;;;-------------------------------------------------------------------------- ;;; Internal addresses. diff --git a/odin.lisp b/odin.lisp new file mode 100644 index 0000000..10bb690 --- /dev/null +++ b/odin.lisp @@ -0,0 +1,21 @@ +;;; Zone file for odin.gg + +(load "hosts.lisp" :verbose nil) + +(setf *default-zone-admin* "hostmaster@odin.gg") + +(setf *default-zone-source* 'radius.distorted.org.uk.) + +(defzone odin.gg + + ;; Nameservers + :ns ((radius-ns :ip radius) + (precision-ns :ip precision) + ns6.gandi.net.) + + ;; Web service. + ((@ www) :svc stratocaster) + + ;; Mail servers + :mx ((mail :ip vampire)) + :srv ((:smtp mail))) -- 2.11.0