summaryrefslogtreecommitdiff
path: root/Propellor
diff options
context:
space:
mode:
authorJoey Hess2014-04-01 17:03:03 -0400
committerJoey Hess2014-04-01 17:03:03 -0400
commitb4480162635aa372cef21b84c336abe0638ebeb2 (patch)
tree09c57fd5660ddb1cdb4d3b2d2710933761e4471d /Propellor
parent4b8a6c5e72dbbc796f48005e5e3ac2825ce008b2 (diff)
propellor spin
Diffstat (limited to 'Propellor')
-rw-r--r--Propellor/Property/User.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Propellor/Property/User.hs b/Propellor/Property/User.hs
index 951a173e..9d948834 100644
--- a/Propellor/Property/User.hs
+++ b/Propellor/Property/User.hs
@@ -12,7 +12,7 @@ accountFor user = check (isNothing <$> homedir user) $ cmdProperty "adduser"
, "--gecos", ""
, user
]
- `describe` ("ssh account " ++ user)
+ `describe` ("account for " ++ user)
-- | Removes user home directory!! Use with caution.
nuked :: UserName -> Eep -> Property