From 9c84b8daee081e789e2fa04f8c6ca09c295e5b8f Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 10 Feb 2015 22:56:52 -0400 Subject: [PATCH] propellor spin --- config-joey.hs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/config-joey.hs b/config-joey.hs index bc66519..d812b7f 100644 --- a/config-joey.hs +++ b/config-joey.hs @@ -460,15 +460,14 @@ myDnsSecondary = propertyList "dns secondary for all my domains" $ props branchableSecondary :: RevertableProperty branchableSecondary = Dns.secondaryFor ["branchable.com"] hosts "branchable.com" --- Currently using diatom (ns2) as primary with secondaries --- elephant (ns3), kite (ns4) and gandi. +-- Currently using kite (ns4) as primary with secondaries +-- elephant (ns3) and gandi. -- kite handles all mail. myDnsPrimary :: Bool -> Domain -> [(BindDomain, Record)] -> RevertableProperty myDnsPrimary dnssec domain extras = (if dnssec then Dns.signedPrimary (Weekly Nothing) else Dns.primary) hosts domain - (Dns.mkSOA "ns2.kitenet.net" 100) $ - [ (RootDomain, NS $ AbsDomain "ns2.kitenet.net") + (Dns.mkSOA "ns4.kitenet.net" 100) $ + [ (RootDomain, NS $ AbsDomain "ns4.kitenet.net") , (RootDomain, NS $ AbsDomain "ns3.kitenet.net") - , (RootDomain, NS $ AbsDomain "ns4.kitenet.net") , (RootDomain, NS $ AbsDomain "ns6.gandi.net") , (RootDomain, MX 0 $ AbsDomain "kitenet.net") , (RootDomain, TXT "v=spf1 a a:kitenet.net ~all")