2015-02-11 03:06:07 +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
|
2015-09-10 00:06:41 +03:00
|
|
|
# @author Robin McCorkell
|
|
|
|
# @copyright 2015 ownCloud
|
2015-02-11 03:06:07 +03:00
|
|
|
|
|
|
|
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
|
2015-09-10 00:06:41 +03:00
|
|
|
thisFolder=`echo $0 | replace "env/stop-swift-ceph.sh" ""`
|
2015-02-11 03:06:07 +03:00
|
|
|
|
|
|
|
if [ -z "$thisFolder" ]; then
|
|
|
|
thisFolder="."
|
|
|
|
fi;
|
|
|
|
|
|
|
|
# stopping and removing docker containers
|
2015-09-10 00:06:41 +03:00
|
|
|
for container in `cat $thisFolder/dockerContainerCeph.$EXECUTOR_NUMBER.swift`; do
|
2016-02-24 15:58:13 +03:00
|
|
|
docker logs $container
|
|
|
|
|
2015-02-11 03:06:07 +03:00
|
|
|
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-02-11 03:06:07 +03:00
|
|
|
docker rm -f $container
|
|
|
|
done;
|
|
|
|
|
|
|
|
# cleanup
|
|
|
|
rm $thisFolder/config.swift.php
|
2015-09-10 00:06:41 +03:00
|
|
|
rm $thisFolder/dockerContainerCeph.$EXECUTOR_NUMBER.swift
|
2016-03-01 00:13:27 +03:00
|
|
|
rm $thisFolder/dockerContainerCeph.$EXECUTOR_NUMBER.swift.sock
|
2015-02-11 03:06:07 +03:00
|
|
|
|