1234567891011121314151617181920212223242526272829303132333435363738 |
- #!/bin/bash
- #
- # SPDX-FileCopyrightText: 2015-2016 ownCloud, Inc.
- # SPDX-License-Identifier: AGPL-3.0-only
- #
- # This script stops the docker container the files_external tests were run
- # against. It will also revert the config changes done in start step.
- #
- 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 "env/stop-swift-ceph.sh" ""`
- if [ -z "$thisFolder" ]; then
- thisFolder="."
- fi;
- # stopping and removing docker containers
- for container in `cat $thisFolder/dockerContainerCeph.$EXECUTOR_NUMBER.swift`; do
- docker logs $container
- echo "Stopping and removing docker container $container"
- # kills running container and removes it
- docker stop $container
- docker rm -f $container
- done;
- # cleanup
- rm $thisFolder/config.swift.php
- rm $thisFolder/dockerContainerCeph.$EXECUTOR_NUMBER.swift
- rm $thisFolder/dockerContainerCeph.$EXECUTOR_NUMBER.swift.sock
|