about summary refs log tree commit diff stats
path: root/hm/soispha/pkgs/scripts/wrappers/virsh-del
blob: 2c7c1fb093fb72e05611af77f4fa6f5a1b6e5113 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#! /usr/bin/env dash

# shellcheck source=/dev/null
SHELL_LIBRARY_VERSION="1.6.4" . %SHELL_LIBRARY_PATH

virsh destroy "$1"
virsh undefine "$1" --nvram
virsh vol-delete --pool default "$1".qcow2

# vim: ft=sh