summaryrefslogtreecommitdiff
path: root/src/Propellor/Engine.hs
diff options
context:
space:
mode:
authorJoey Hess2014-05-31 18:52:42 -0400
committerJoey Hess2014-05-31 18:52:42 -0400
commit4c96b0681c554965bc2aff15a04eb7a48268b3f6 (patch)
treea5cfccb8f871ac8e542378c33996f37f4bdcf8c8 /src/Propellor/Engine.hs
parent84eb0500850138ad0145e453e2ce4204f2fc7afd (diff)
propellor spin
Diffstat (limited to 'src/Propellor/Engine.hs')
-rw-r--r--src/Propellor/Engine.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Engine.hs b/src/Propellor/Engine.hs
index 773e234c..1fba6a23 100644
--- a/src/Propellor/Engine.hs
+++ b/src/Propellor/Engine.hs
@@ -33,7 +33,7 @@ ensureProperties ps = ensure ps NoChange
ensure [] rs = return rs
ensure (l:ls) rs = do
hn <- getHostName
- r <- actionMessage (hn ++ " " ++ propertyDesc l) (ensureProperty l)
+ r <- actionMessageOn hn (propertyDesc l) (ensureProperty l)
ensure ls (r <> rs)
ensureProperty :: Property -> Propellor Result