summaryrefslogtreecommitdiffstats
path: root/prototypes/bifrost
diff options
context:
space:
mode:
authorMarkos Chandras <mchandras@suse.de>2017-03-20 10:21:37 +0000
committerMarkos Chandras <mchandras@suse.de>2017-03-20 10:21:37 +0000
commitf91a4783b6daf08573da4b72f55cb1dca68680bd (patch)
tree95ba77014df2774016e7da7134b214507c932029 /prototypes/bifrost
parente5853207d47c80864f314f8b00caff4f1f8b7aef (diff)
prototypes: bifrost: destroy-env: Delete nodes from vbmc
Upstream commit 12376b958e76 ("Use virtualbmc for virtual BM nodes") moved the VM IPMI management from the ssh drivers to the vbmc one. As a result, we need to clear all the nodes from vbmc during cleanup. Change-Id: I2a4e7233874c4fad8df525c8f7b526df17a8211f Signed-off-by: Markos Chandras <mchandras@suse.de>
Diffstat (limited to 'prototypes/bifrost')
-rwxr-xr-xprototypes/bifrost/scripts/destroy-env.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/prototypes/bifrost/scripts/destroy-env.sh b/prototypes/bifrost/scripts/destroy-env.sh
index b73092b0f..8a5014468 100755
--- a/prototypes/bifrost/scripts/destroy-env.sh
+++ b/prototypes/bifrost/scripts/destroy-env.sh
@@ -20,6 +20,10 @@ for vm in $(virsh list --all --name); do
virsh destroy $vm || true
virsh undefine $vm || true
done
+# Delete all hosts from vbmc (look for a port number)
+for vm in $(vbmc list | awk '/[0-9]/{{ print $2 }}'); do
+ vbmc delete $vm
+done
service ironic-conductor stop || true