diff options
author | Yuli Shlosberg <ys9693@att.com> | 2017-09-20 12:00:32 +0300 |
---|---|---|
committer | Yuli Shlosberg <ys9693@att.com> | 2017-09-20 12:05:26 +0300 |
commit | 939bee0976930048c97b5e3f6e3d07597a8937ae (patch) | |
tree | 26e59761493581f674e5b98857d305caa4e2cdd1 /test/csit/scripts/sdc/kill_containers_and_remove_dataFolders.sh | |
parent | ed5c639bb88e96adabb6c74e5bdbe2ed5a78f266 (diff) |
add csit healthchek test
Change-Id: I20c5016dc80be59e5a4b7b081e2fdd8c7983dd39
Issue-Id: SDC-357
Signed-off-by: Yuli Shlosberg <ys9693@att.com>
Diffstat (limited to 'test/csit/scripts/sdc/kill_containers_and_remove_dataFolders.sh')
-rw-r--r-- | test/csit/scripts/sdc/kill_containers_and_remove_dataFolders.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/test/csit/scripts/sdc/kill_containers_and_remove_dataFolders.sh b/test/csit/scripts/sdc/kill_containers_and_remove_dataFolders.sh new file mode 100644 index 000000000..e03284248 --- /dev/null +++ b/test/csit/scripts/sdc/kill_containers_and_remove_dataFolders.sh @@ -0,0 +1,31 @@ +#!/bin/bash +# +# Copyright 2016-2017 Huawei Technologies Co., Ltd. +# +# 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. +# +# Modifications copyright (c) 2017 AT&T Intellectual Property +# + +echo "This is ${WORKSPACE}/test/csit/scripts/sdc/kill_and_remove_dataFolder.sh" + +#kill and remove all sdc dockers +docker stop $(docker ps -a -q --filter="name=sdc") +docker rm $(docker ps -a -q --filter="name=sdc") + + +#delete data folder + +rm -rf ${WORKSPACE}/data/* + + |