summaryrefslogtreecommitdiff
path: root/src/Propellor/Engine.hs
diff options
context:
space:
mode:
authorJoey Hess2014-05-31 18:40:34 -0400
committerJoey Hess2014-05-31 18:40:34 -0400
commit4722b62e45873e80bea015347bcc6e29100b63a7 (patch)
treebebeb5cd8b85edac8b8f56a911ac3818a4dad106 /src/Propellor/Engine.hs
parent44244b5094032e5dba906490a58c422f2183a41b (diff)
propellor spin
Diffstat (limited to 'src/Propellor/Engine.hs')
-rw-r--r--src/Propellor/Engine.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Propellor/Engine.hs b/src/Propellor/Engine.hs
index 9bb3531a..773e234c 100644
--- a/src/Propellor/Engine.hs
+++ b/src/Propellor/Engine.hs
@@ -32,7 +32,8 @@ ensureProperties ps = ensure ps NoChange
where
ensure [] rs = return rs
ensure (l:ls) rs = do
- r <- actionMessage (propertyDesc l) (ensureProperty l)
+ hn <- getHostName
+ r <- actionMessage (hn ++ " " ++ propertyDesc l) (ensureProperty l)
ensure ls (r <> rs)
ensureProperty :: Property -> Propellor Result