diff options
| -rw-r--r-- | Propellor/Property/Docker.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Propellor/Property/Docker.hs b/Propellor/Property/Docker.hs index c9232548..784a34b9 100644 --- a/Propellor/Property/Docker.hs +++ b/Propellor/Property/Docker.hs @@ -186,7 +186,7 @@ chain s = case readish s of -- 1 minute. provisionContainer :: ContainerId -> Property provisionContainer cid = Property (containerDesc cid "provision") $ - simpleShClientRetry 60 (namedPipe cid) "./propellor" [show params] (go Nothing) + simpleShClientRetry 60 (namedPipe cid) "./propellor" ["--continue", show params] (go Nothing) where params = Chain $ fromContainerId cid |
