From 0df6a57ca9beaf11bf4521aa5578bbce1f617ad5 Mon Sep 17 00:00:00 2001 Message-Id: <0df6a57ca9beaf11bf4521aa5578bbce1f617ad5.1714418334.git.mdw@distorted.org.uk> From: Mark Wooding Date: Fri, 15 Jun 2007 17:25:27 +0100 Subject: [PATCH] harlequin.org.uk: New domain. Organization: Straylight/Edgeware From: Mark Wooding --- Makefile | 8 +++++++- harlequin.org.uk.lisp | 19 +++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 harlequin.org.uk.lisp diff --git a/Makefile b/Makefile index 1e98abc..e2f30a7 100644 --- a/Makefile +++ b/Makefile @@ -6,8 +6,11 @@ DISTORTED_ZONES = \ distorted.org.uk.zone \ 198.29.172.in-addr.arpa.zone \ 199.29.172.in-addr.arpa.zone +HARLEQUIN_ZONES = \ + harlequin.org.uk.zone ALL_ZONES = \ - $(DISTORTED_ZONES) + $(DISTORTED_ZONES) \ + $(HARLEQUIN_ZONES) DOCS = distorted.tex DOC_OUTPUTS = $(foreach suffix,dvi ps,\ @@ -27,6 +30,9 @@ install: all publish $(DISTORTED_ZONES): distorted.org.uk.lisp hosts.lisp $(ZONE) $< +$(HARLEQUIN_ZONES): harlequin.org.uk.lisp hosts.lisp + $(ZONE) $< + %.dvi: %.tex latex $< latex $< diff --git a/harlequin.org.uk.lisp b/harlequin.org.uk.lisp new file mode 100644 index 0000000..08e8f30 --- /dev/null +++ b/harlequin.org.uk.lisp @@ -0,0 +1,19 @@ +;;; Zone file for harlequin.org.uk + +(load "hosts" :verbose nil) + +(setf *default-zone-admin* "hostmaster@distorted.org.uk") +(setf *default-zone-source* 'guvnor.distorted.org.uk.) + +(defzone harlequin.org.uk + ;; + ;; Nameservers + :ns ((boyle.ns :ip boyle.nsict.org) + ns0.blackcatnetworks.co.uk. + ns1.blackcatnetworks.co.uk.) + ;; + ;; Mail servers + :mx ((mail :ip guvnor.demon)) + ;; + ;; Web service + ((@ www) :a boyle.nsict.org)) -- [mdw]