aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandru Avadanii <Alexandru.Avadanii@enea.com>2018-09-17 15:48:52 +0200
committerAlexandru Avadanii <Alexandru.Avadanii@enea.com>2018-09-17 15:48:52 +0200
commitd385c0ca5a6650ed05744be545d52788a6b40b6d (patch)
tree356657094f83d772cd9aa4bc25ba181fdde10cf2
parent98ba528c5d60075b8583e3533cd777e0e24a7ea5 (diff)
[lib.sh] Stop Fuel@OPNFV containers if present
JIRA: FUEL-388 Change-Id: I6a7286bb9fc0243ab4a89292e34059fc85a831c4 Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
-rw-r--r--mcp/scripts/lib.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/mcp/scripts/lib.sh b/mcp/scripts/lib.sh
index ce5db251f..e7720d6fa 100644
--- a/mcp/scripts/lib.sh
+++ b/mcp/scripts/lib.sh
@@ -245,6 +245,10 @@ function cleanup_vms {
xargs --no-run-if-empty -I{} sudo rm -f {}
virsh undefine "${node}" --remove-all-storage --nvram
done
+ # Newer Fuel@OPNFV releases run containers that conflict with the infra VMs
+ if which docker > /dev/null 2>&1; then
+ docker ps -a -q --filter="name=fuel" | xargs --no-run-if-empty docker stop
+ fi
}
function prepare_vms {