diff options
| author | Joey Hess <id@joeyh.name> | 2014-11-27 19:10:39 -0400 |
|---|---|---|
| committer | Joey Hess <id@joeyh.name> | 2014-11-27 19:10:39 -0400 |
| commit | 4c2eac2d3c5a190fe727fca39e71e7218fba940a (patch) | |
| tree | 4a5914a6f1825c3ff84179a9da17f74700ff7913 /src/Propellor/Property/Docker.hs | |
| parent | 9500e9bb810202eabc6a299ca8aa3a70fa5dcee6 (diff) | |
remove -i, seems not needed and may be causing problem
Diffstat (limited to 'src/Propellor/Property/Docker.hs')
| -rw-r--r-- | src/Propellor/Property/Docker.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/Property/Docker.hs b/src/Propellor/Property/Docker.hs index 586ebc2e..5fa06517 100644 --- a/src/Propellor/Property/Docker.hs +++ b/src/Propellor/Property/Docker.hs @@ -430,7 +430,7 @@ provisionContainer cid = containerDesc cid $ property "provisioned" $ liftIO $ d let params = ["--continue", show $ toChain cid] msgh <- mkMessageHandle let p = inContainerProcess cid - [ if isConsole msgh then "-it" else "-i" ] + (if isConsole msgh then ["-it"] else []) (shim : params) r <- withHandle StdoutHandle createProcessSuccess p $ processChainOutput |
