From 4b89b339fc24c16955af03e7cb06fc21c48942d1 Mon Sep 17 00:00:00 2001 From: Markos Chandras Date: Wed, 29 Mar 2017 15:40:03 +0100 Subject: prototypes: bifrost: Remove /opt/stack from previous deployments /opt/stack is being created by bifrost so the destroy-env.sh script should be responsible for cleaning up all the remnants. That way we can use the destroy-env.sh script outside of Jenkins as well. Change-Id: I72d9737cf2446ff3ffc02f195337a6873eceb5c0 Signed-off-by: Markos Chandras --- prototypes/bifrost/scripts/destroy-env.sh | 3 +++ 1 file changed, 3 insertions(+) (limited to 'prototypes/bifrost/scripts') diff --git a/prototypes/bifrost/scripts/destroy-env.sh b/prototypes/bifrost/scripts/destroy-env.sh index ce9d53538..d570f10ad 100755 --- a/prototypes/bifrost/scripts/destroy-env.sh +++ b/prototypes/bifrost/scripts/destroy-env.sh @@ -14,6 +14,9 @@ if [[ $(whoami) != "root" ]]; then exit 1 fi +# Start fresh +rm -rf /opt/stack + # Delete all libvirt VMs and hosts from vbmc (look for a port number) for vm in $(vbmc list | awk '/[0-9]/{{ print $2 }}'); do virsh destroy $vm || true -- cgit 1.2.3-korg