diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2016-03-10 10:58:20 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2016-03-10 10:58:20 +0100 |
commit | 262ec35d50353b2ae3ec0c1f4ee7d42d58f72b6f (patch) | |
tree | 92946f9f9a3a26a142997ba5891c14238630ccb8 /tests | |
parent | 41aae971a9a0e4e2cb53a64ba56ae4fe5b0a33d4 (diff) | |
parent | cf3cb4d75e2e42bf96a2e6289267d887c2378122 (diff) | |
download | nextcloud-server-262ec35d50353b2ae3ec0c1f4ee7d42d58f72b6f.tar.gz nextcloud-server-262ec35d50353b2ae3ec0c1f4ee7d42d58f72b6f.zip |
Merge pull request #23017 from owncloud/first-stop-the-dockers
docker containers should be stopped before being removed - refs https…
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/objectstore/stop-swift-ceph.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/objectstore/stop-swift-ceph.sh b/tests/objectstore/stop-swift-ceph.sh index 23423e73d6a..afc5f712ab4 100755 --- a/tests/objectstore/stop-swift-ceph.sh +++ b/tests/objectstore/stop-swift-ceph.sh @@ -31,6 +31,7 @@ if [ -e $thisFolder/dockerContainerCeph.$EXECUTOR_NUMBER.swift ]; then fi echo "Stopping and removing docker container $container" # kills running container and removes it + docker stop $container docker rm -f $container done; fi; |