2015-09-28 17:38:01 +03:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# ownCloud
|
|
|
|
#
|
|
|
|
# This script stops the docker container the files_external tests were run
|
|
|
|
# against. It will also revert the config changes done in start step.
|
|
|
|
#
|
|
|
|
# @author Morris Jobke
|
|
|
|
# @author Robin McCorkell
|
|
|
|
# @copyright 2015 ownCloud
|
|
|
|
|
|
|
|
if ! command -v docker >/dev/null 2>&1; then
|
|
|
|
echo "No docker executable found - skipped docker stop"
|
|
|
|
exit 0;
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Docker executable found - stop and remove docker containers"
|
|
|
|
|
|
|
|
# retrieve current folder to remove the config from the parent folder
|
|
|
|
thisFolder=`echo $0 | replace "stop-swift-ceph.sh" ""`
|
|
|
|
|
|
|
|
if [ -z "$thisFolder" ]; then
|
|
|
|
thisFolder="."
|
|
|
|
fi;
|
|
|
|
|
2015-10-16 22:54:09 +03:00
|
|
|
if [ -e $thisFolder/dockerContainerCeph.$EXECUTOR_NUMBER.swift ]; then
|
|
|
|
# stopping and removing docker containers
|
|
|
|
for container in `cat $thisFolder/dockerContainerCeph.$EXECUTOR_NUMBER.swift`; do
|
|
|
|
if [ -n "$DEBUG" ]; then
|
|
|
|
docker logs $container
|
|
|
|
fi
|
|
|
|
echo "Stopping and removing docker container $container"
|
|
|
|
# kills running container and removes it
|
2016-03-09 16:02:08 +03:00
|
|
|
docker stop $container
|
2015-10-16 22:54:09 +03:00
|
|
|
docker rm -f $container
|
|
|
|
done;
|
|
|
|
fi;
|
2015-09-28 17:38:01 +03:00
|
|
|
|
|
|
|
# cleanup
|
2015-10-16 22:54:09 +03:00
|
|
|
rm -rf $thisFolder/swift.config.php
|
|
|
|
rm -rf $thisFolder/dockerContainerCeph.$EXECUTOR_NUMBER.swift
|
2016-03-01 12:45:48 +03:00
|
|
|
rm -rf $thisFolder/dockerContainerCeph.$EXECUTOR_NUMBER.swift.sock
|