summaryrefslogtreecommitdiff
path: root/Propellor/Attr.hs
diff options
context:
space:
mode:
authorJoey Hess2014-04-19 01:28:46 -0400
committerJoey Hess2014-04-19 01:28:46 -0400
commit9e578aca6b0914443c95f8691fd3ba39522f28fc (patch)
treef4f0882539dc5798af97d833fe0bd3d8b3e0df2f /Propellor/Attr.hs
parentd1db64b3bc4ef1c802344f666eb160d9a8c97cca (diff)
rename aka to alias
Diffstat (limited to 'Propellor/Attr.hs')
-rw-r--r--Propellor/Attr.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Propellor/Attr.hs b/Propellor/Attr.hs
index a54d8833..fb94dc34 100644
--- a/Propellor/Attr.hs
+++ b/Propellor/Attr.hs
@@ -42,8 +42,8 @@ ipv6 addr = pureAttrProperty ("ipv6 " ++ addr)
(addDNS $ Address $ IPv6 addr)
-- | Indicates another name for the host in the DNS.
-aka :: Domain -> Property
-aka domain = pureAttrProperty ("aka " ++ domain)
+alias :: Domain -> Property
+alias domain = pureAttrProperty ("aka " ++ domain)
(addDNS $ CNAME $ AbsDomain domain)
addDNS :: Record -> SetAttr