Merge "uCPE Blueprint"
[eliot.git] / blueprints / uCPE / scripts / ci_management / uninstall_cadvisor.sh
1 #!/bin/bash -ex
2 ##############################################################################
3 # Copyright (c) 2019 Huawei Tech and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11
12 #stop cadvisor statement executed at ELIOT Edge Node
13 if [ $(sudo docker ps | grep cadvisor | wc -l) -gt 0 ];then
14  sudo docker stop $(sudo docker ps | grep cadvisor | awk '{ print $1 }')
15 fi
16
17 if [ $(sudo docker ps -a | grep cadvisor | wc -l) -gt 0 ];then
18   sudo docker rm $(sudo docker ps -a | grep cadvisor | awk '{ print $1 }')
19 fi