remove unnecessary use of ensureProperty
This commit is contained in:
parent
b68b9ee165
commit
3a99c87cdf
|
@ -426,13 +426,11 @@ runningContainer cid@(ContainerId hn cn) image runps = containerDesc cid $ prope
|
|||
retry (n-1) a
|
||||
_ -> return v
|
||||
|
||||
go img = do
|
||||
liftIO $ do
|
||||
go img = liftIO $ do
|
||||
clearProvisionedFlag cid
|
||||
createDirectoryIfMissing True (takeDirectory $ identFile cid)
|
||||
shim <- liftIO $ Shim.setup (localdir </> "propellor") Nothing (localdir </> shimdir cid)
|
||||
liftIO $ writeFile (identFile cid) (show ident)
|
||||
ensureProperty $ property "run" $ liftIO $
|
||||
shim <- Shim.setup (localdir </> "propellor") Nothing (localdir </> shimdir cid)
|
||||
writeFile (identFile cid) (show ident)
|
||||
toResult <$> runContainer img
|
||||
(runps ++ ["-i", "-d", "-t"])
|
||||
[shim, "--continue", show (DockerInit (fromContainerId cid))]
|
||||
|
|
Loading…
Reference in New Issue