c12s-kubespray/tests/scripts/vagrant_clean.sh

10 lines
163 B
Bash
Raw Normal View History

#!/bin/bash
set -euxo pipefail
# Cleanup vagrant VMs to avoid name conflicts
for i in $(virsh list --name)
do
virsh destroy "$i"
virsh undefine "$i"
done