summaryrefslogtreecommitdiff
path: root/config-joey.hs
diff options
context:
space:
mode:
authorJoey Hess2014-04-19 10:47:38 -0400
committerJoey Hess2014-04-19 10:47:38 -0400
commit2279979d32b252d826c23288bb90a723d6a1147d (patch)
treefb2b0699310153103660fdeb2aec4c601b53a561 /config-joey.hs
parentcd10b5e2ed2a5e4053ae733a7c8961303f2dcb35 (diff)
Removed root domain records from SOA. Instead, use RootDomain when calling Dns.primary.
Diffstat (limited to 'config-joey.hs')
-rw-r--r--config-joey.hs17
1 files changed, 8 insertions, 9 deletions
diff --git a/config-joey.hs b/config-joey.hs
index 1bda9dd2..e0973f94 100644
--- a/config-joey.hs
+++ b/config-joey.hs
@@ -124,15 +124,14 @@ hosts = -- (o) `
& myDnsSecondary
& Dns.primary hosts "olduse.net"
- ( Dns.mkSOA "ns1.kitenet.net" 100
- [ NS (AbsDomain "ns1.kitenet.net")
- , NS (AbsDomain "ns6.gandi.net")
- , NS (AbsDomain "ns2.kitenet.net")
- , MX 0 (AbsDomain "kitenet.net")
- , TXT "v=spf1 a -all"
- ]
- )
- [ (RelDomain "article", CNAME $ AbsDomain "virgil.koldfront.dk") ]
+ (Dns.mkSOA "ns1.kitenet.net" 100)
+ [ (RootDomain, NS $ AbsDomain "ns1.kitenet.net")
+ , (RootDomain, NS $ AbsDomain "ns6.gandi.net")
+ , (RootDomain, NS $ AbsDomain "ns2.kitenet.net")
+ , (RootDomain, MX 0 $ AbsDomain "kitenet.net")
+ , (RootDomain, TXT "v=spf1 a -all")
+ , (RelDomain "article", CNAME $ AbsDomain "virgil.koldfront.dk")
+ ]
& Apt.installed ["ntop"]