This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [[ ${UID} -ne 0 ]]; | |
then | |
echo 'This script need to be run with root permissions' | |
echo "(we assume you don't have write access to /opt)" | |
exit | |
fi | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo "Destroy: $1" | |
virsh destroy $1 2> /dev/null | |
for disk in $(virsh -q domblklist $1 | awk '{print $2}'); do | |
pool=$(virsh vol-pool $disk) | |
name=$(virsh vol-info $disk | awk '$1 == "Name:" {print $2}') | |
echo "Delete volume: $disk ($name in $pool)" |