From 6928bbc5713d36b2a3d45bd87afdca69fa7f3894 Mon Sep 17 00:00:00 2001 Message-Id: <6928bbc5713d36b2a3d45bd87afdca69fa7f3894.1714340620.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 24 Nov 2013 23:34:44 +0000 Subject: [PATCH] No longer serving harlequin.org.uk or felixpearce.com. Organization: Straylight/Edgeware From: Mark Wooding --- Makefile | 10 ---------- felixpearce.lisp | 22 ---------------------- harlequin.lisp | 26 -------------------------- 3 files changed, 58 deletions(-) delete mode 100644 felixpearce.lisp delete mode 100644 harlequin.lisp diff --git a/Makefile b/Makefile index e03653f..d4b3669 100644 --- a/Makefile +++ b/Makefile @@ -71,16 +71,6 @@ distorted_all_ZONES += 199.29.172.in-addr.arpa ###-------------------------------------------------------------------------- ### Other zones. -## harlequin.org.uk -ZONESETS += harlequin -harlequin_VIEWS = outside -harlequin_all_ZONES = harlequin.org.uk - -## felixpearce.com -ZONESETS += felixpearce -felixpearce_VIEWS = outside -felixpearce_all_ZONES = felixpearce.com - ## binswood.org.uk ZONESETS += binswood binswood_VIEWS = outside diff --git a/felixpearce.lisp b/felixpearce.lisp deleted file mode 100644 index a5c7146..0000000 --- a/felixpearce.lisp +++ /dev/null @@ -1,22 +0,0 @@ -;;; Zone file for felixpearce.com - -(load "hosts.lisp" :verbose nil) - -(setf *default-zone-admin* "hostmaster@distorted.org.uk") - -(setf *default-zone-source* 'radius.distorted.org.uk.) - -(defzone felixpearce.com - - ;; Nameservers - :ns ((radius.ns :ip radius) - (precision.ns :ip precision) - (mythic-beasts-1.ns :ip mythic-ns1) - (mythic-beasts-2.ns :ip mythic-ns2)) - - ;; Web service. - ((@ www blog) :svc stratocaster) - - ;; Mail servers - :mx ((mail :ip vampire)) - :srv ((:smtp mail))) diff --git a/harlequin.lisp b/harlequin.lisp deleted file mode 100644 index 15deeb7..0000000 --- a/harlequin.lisp +++ /dev/null @@ -1,26 +0,0 @@ -;;; Zone file for harlequin.org.uk - -(load "hosts.lisp" :verbose nil) - -(setf *default-zone-admin* "hostmaster@distorted.org.uk") - -(setf *default-zone-source* 'radius.distorted.org.uk.) - -(defzone harlequin.org.uk - - ;; Nameservers - :ns ((radius.ns :ip radius) - (precision.ns :ip precision) - (mythic-beasts-1.ns :ip mythic-ns1) - (mythic-beasts-2.ns :ip mythic-ns2)) - - ;; Mail servers - :mx ((mail :ip vampire)) - :srv ((:smtp mail)) - - ;; Web service - ((@ www) :svc boyle.nsict.org) - :srv ((:http www)) - - ;; Web log (currently local) - (bindery :svc vampire)) -- [mdw]