mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-01-11 01:57:37 -03:30
10 lines
163 B
Bash
Executable File
10 lines
163 B
Bash
Executable File
#!/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 |