From: Markos Chandras Date: Tue, 7 Feb 2017 09:35:58 +0000 (+0100) Subject: bifrost: Destroy all VMs from the slave nodes X-Git-Tag: 6.0.0~437 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=11191a625d99944cc9c514e9fc97ff3f39665a60;p=releng-xci.git bifrost: Destroy all VMs from the slave nodes New patchsets may introduce (or remove) testing VMs so make sure the script destroys all of them Change-Id: Ic96142823b9a8b044306327ce3454fbdc6fa5eb4 Signed-off-by: Markos Chandras --- diff --git a/bifrost/scripts/destroy-env.sh b/bifrost/scripts/destroy-env.sh index 14869b0e..b73092b0 100755 --- a/bifrost/scripts/destroy-env.sh +++ b/bifrost/scripts/destroy-env.sh @@ -14,12 +14,12 @@ if [[ $(whoami) != "root" ]]; then exit 1 fi -virsh destroy jumphost.opnfvlocal || true -virsh destroy controller00.opnfvlocal || true -virsh destroy compute00.opnfvlocal || true -virsh undefine jumphost.opnfvlocal || true -virsh undefine controller00.opnfvlocal || true -virsh undefine compute00.opnfvlocal || true +# Delete all VMs on the slave since proposed patchsets +# may leave undesired VM leftovers +for vm in $(virsh list --all --name); do + virsh destroy $vm || true + virsh undefine $vm || true +done service ironic-conductor stop || true