propellor spin
This commit is contained in:
parent
00cab6901f
commit
3669bd61d0
|
@ -77,6 +77,6 @@ processChainOutput h = go Nothing
|
||||||
Nothing -> pure $ fromMaybe FailedChange $
|
Nothing -> pure $ fromMaybe FailedChange $
|
||||||
readish =<< lastline
|
readish =<< lastline
|
||||||
Just s -> do
|
Just s -> do
|
||||||
maybe noop putStrLn lastline
|
maybe noop (\l -> unless (null l) (putStrLn l)) lastline
|
||||||
hFlush stdout
|
hFlush stdout
|
||||||
go (Just s)
|
go (Just s)
|
||||||
|
|
|
@ -109,6 +109,7 @@ chain hostlist hn loc = case findHostNoAlias hostlist hn of
|
||||||
where
|
where
|
||||||
go h = do
|
go h = do
|
||||||
changeWorkingDirectory localdir
|
changeWorkingDirectory localdir
|
||||||
|
forceConsole
|
||||||
onlyProcess (provisioningLock loc) $ do
|
onlyProcess (provisioningLock loc) $ do
|
||||||
r <- runPropellor h $ ensureProperties $ hostProperties h
|
r <- runPropellor h $ ensureProperties $ hostProperties h
|
||||||
putStrLn $ "\n" ++ show r
|
putStrLn $ "\n" ++ show r
|
||||||
|
|
Loading…
Reference in New Issue