diff options
| author | Joey Hess <joeyh@joeyh.name> | 2017-02-26 16:48:26 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2017-02-26 16:48:26 -0400 |
| commit | aa225472fb586486b5839e5362a555a476e9a45d (patch) | |
| tree | c032200efff9476e2c34bcef40b228524b6631ed /src/Propellor/Property/Dns.hs | |
| parent | ae7359a0b0cf58ec83a7ea80fc51d4e6f5be72bf (diff) | |
convert fromIPAddr to val
Diffstat (limited to 'src/Propellor/Property/Dns.hs')
| -rw-r--r-- | src/Propellor/Property/Dns.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Property/Dns.hs b/src/Propellor/Property/Dns.hs index 3fcffed3..889aece5 100644 --- a/src/Propellor/Property/Dns.hs +++ b/src/Propellor/Property/Dns.hs @@ -250,7 +250,7 @@ confStanza c = cfgline f v = "\t" ++ f ++ " " ++ v ++ ";" ipblock name l = [ "\t" ++ name ++ " {" ] ++ - (map (\ip -> "\t\t" ++ fromIPAddr ip ++ ";") l) ++ + (map (\ip -> "\t\t" ++ val ip ++ ";") l) ++ [ "\t};" ] mastersblock | null (confMasters c) = [] |
