X-Git-Url: https://gerrit.akraino.org/r/gitweb?p=ta%2Fremote-installer.git;a=blobdiff_plain;f=scripts%2Fstop.sh;fp=scripts%2Fstop.sh;h=b48b9b19dfa0206d5666e01a2939b14c9e9274ae;hp=0000000000000000000000000000000000000000;hb=f9adb9143ef94b16ae16941652e75deccad506ef;hpb=3a2c5cc0fe9265242032882d68129b7faf47235c diff --git a/scripts/stop.sh b/scripts/stop.sh new file mode 100755 index 0000000..b48b9b1 --- /dev/null +++ b/scripts/stop.sh @@ -0,0 +1,55 @@ +#!/bin/bash +# Copyright 2019 Nokia +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +set -e + +cd "$(dirname "$0")"/.. + +CONT_NAME="remote-installer" + +error() +{ + echo "ERROR : $1" + [ -z $2 ] || help + exit 1 +} + +help() +{ + echo -e "$(basename $0) [-h -a -c ]" + echo -e " -h display this help" + echo -e " -c container name or ID, default $CONT_NAME" +} + +while getopts "hc:" arg; do + case $arg in + h) + help + exit 0 + ;; + c) + CONT_NAME="$OPTARG" + ;; + *) + error "Unknow argument!" showhelp + ;; + esac +done + +docker container stop "$CONT_NAME" \ + || error "failed to stop container $CONT_NAME" + +echo -e "Container successfully stopped : $CONT_NAME" +