blob: 6907c84c22417e1f9682c50db460b5d6bbc179fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
- hosts: all
become: true
gather_facts: false
tasks:
- ansible.builtin.include_role:
name: zfs
tasks_from: dataset-check-exists.yml
apply:
delegate_to: "{{ hypervisor_host }}"
- ansible.builtin.include_role:
name: libvirt
tasks_from: vm-check-exists.yml
apply:
delegate_to: "{{ hypervisor_host }}"
- ansible.builtin.include_role:
name: libvirt
tasks_from: vm-confirm-info.yml
apply:
delegate_to: "{{ hypervisor_host }}"
- ansible.builtin.include_role:
name: zfs
tasks_from: dataset-confirm-info.yml
apply:
delegate_to: "{{ hypervisor_host }}"
- ansible.builtin.include_role:
name: libvirt
tasks_from: vm-undefine.yml
apply:
delegate_to: "{{ hypervisor_host }}"
- ansible.builtin.include_role:
name: zfs
tasks_from: dataset-destroy.yml
apply:
delegate_to: "{{ hypervisor_host }}"
|