|
1 | 1 | ---
|
2 |
| -- import_tasks: prelude.yml |
3 |
| -- import_tasks: validate.yml |
| 2 | +- ansible.builtin.include_tasks: prelude.yml |
| 3 | +- ansible.builtin.include_tasks: validate.yml |
4 | 4 | - name: Include install-daemon.yml
|
5 |
| - include_tasks: install-daemon.yml |
| 5 | + ansible.builtin.include_tasks: install-daemon.yml |
6 | 6 | when: libvirt_host_install_daemon | bool
|
7 | 7 | - name: Include install-client.yml
|
8 |
| - include_tasks: install-client.yml |
| 8 | + ansible.builtin.include_tasks: install-client.yml |
9 | 9 | when:
|
10 | 10 | - not libvirt_host_install_daemon | bool
|
11 | 11 | - libvirt_host_install_client | bool
|
12 | 12 | - name: Run post-install stage
|
13 |
| - include_tasks: "{{ post_install_path }}" |
| 13 | + ansible.builtin.include_tasks: "{{ post_install_path }}" |
14 | 14 | with_first_found:
|
15 | 15 | - files:
|
16 | 16 | - post-install-{{ ansible_facts.distribution }}.yml
|
|
19 | 19 | loop_control:
|
20 | 20 | loop_var: post_install_path
|
21 | 21 | - name: Include config.yml
|
22 |
| - include_tasks: config.yml |
| 22 | + ansible.builtin.include_tasks: config.yml |
23 | 23 | when: libvirt_host_install_daemon | bool
|
24 | 24 | - name: Include client-config.yml
|
25 |
| - include_tasks: client-config.yml |
| 25 | + ansible.builtin.include_tasks: client-config.yml |
26 | 26 | when: libvirt_host_install_client | bool
|
27 | 27 | - name: Include pools.yml
|
28 |
| - include_tasks: pools.yml |
| 28 | + ansible.builtin.include_tasks: pools.yml |
29 | 29 | when: libvirt_host_pools | length > 0
|
30 | 30 | - name: Include networks.yml
|
31 |
| - include_tasks: networks.yml |
| 31 | + ansible.builtin.include_tasks: networks.yml |
32 | 32 | when: libvirt_host_networks | length > 0
|
0 commit comments