diff options
| author | Joey Hess <joey@kitenet.net> | 2014-04-19 10:47:38 -0400 |
|---|---|---|
| committer | Joey Hess <joey@kitenet.net> | 2014-04-19 10:47:38 -0400 |
| commit | 2279979d32b252d826c23288bb90a723d6a1147d (patch) | |
| tree | fb2b0699310153103660fdeb2aec4c601b53a561 /config-joey.hs | |
| parent | cd10b5e2ed2a5e4053ae733a7c8961303f2dcb35 (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.hs | 17 |
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"] |
