diff options
| author | Joey Hess <joey@kitenet.net> | 2014-05-31 18:40:34 -0400 |
|---|---|---|
| committer | Joey Hess <joey@kitenet.net> | 2014-05-31 18:40:34 -0400 |
| commit | 4722b62e45873e80bea015347bcc6e29100b63a7 (patch) | |
| tree | bebeb5cd8b85edac8b8f56a911ac3818a4dad106 /src/Propellor/Engine.hs | |
| parent | 44244b5094032e5dba906490a58c422f2183a41b (diff) | |
propellor spin
Diffstat (limited to 'src/Propellor/Engine.hs')
| -rw-r--r-- | src/Propellor/Engine.hs | 3 |
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 |
