mirror of
https://github.com/gryf/vmstrap.git
synced 2025-12-18 12:00:31 +01:00
9 lines
264 B
Bash
Executable File
9 lines
264 B
Bash
Executable File
#!/bin/bash -x
|
|
~/devstack/unstack.sh
|
|
for instance in `sudo virsh list --all --name`
|
|
do sudo virsh destroy $instance
|
|
sudo virsh undefine $instance
|
|
done
|
|
sudo umount `mount | grep kube | cut -d " " -f 3`
|
|
sudo rm -rf /var/lib/docker && sudo rm -rf /opt/stack/data
|