2 ##############################################################################
3 # Copyright (c) 2019 Huawei Tech and others.
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 ##############################################################################
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 }')
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 }')