propellor spin

This commit is contained in:
Joey Hess 2014-05-31 18:40:34 -04:00
parent 44244b5094
commit 4722b62e45
Failed to extract signature
1 changed files with 2 additions and 1 deletions

View File

@ -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