aboutsummaryrefslogtreecommitdiff
path: root/roles/libvirt/tasks/vm-undefine.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/libvirt/tasks/vm-undefine.yml')
-rw-r--r--roles/libvirt/tasks/vm-undefine.yml9
1 files changed, 9 insertions, 0 deletions
diff --git a/roles/libvirt/tasks/vm-undefine.yml b/roles/libvirt/tasks/vm-undefine.yml
new file mode 100644
index 0000000..a43b12b
--- /dev/null
+++ b/roles/libvirt/tasks/vm-undefine.yml
@@ -0,0 +1,9 @@
+- name: Destroy VM
+ community.libvirt.virt:
+ name: "{{ libvirt_vm_name }}"
+ state: destroyed
+
+- name: Undefine VM
+ community.libvirt.virt:
+ name: "{{ libvirt_vm_name }}"
+ command: undefine