2024-02-22 19:09:43 +01:00
|
|
|
- name: Include backup tasks
|
|
|
|
include_tasks:
|
|
|
|
file: backup.yml
|
|
|
|
when: run_backup | default(false) | bool
|
2024-02-17 19:01:04 +01:00
|
|
|
|
2024-04-20 12:17:10 +02:00
|
|
|
- name: Include setup tasks
|
|
|
|
include_tasks:
|
|
|
|
file: setup.yml
|
|
|
|
when: run_setup | default(false) | bool
|
|
|
|
|
2024-02-22 19:09:43 +01:00
|
|
|
- name: Include update tasks
|
|
|
|
include_tasks:
|
|
|
|
file: update.yml
|
|
|
|
when: run_update | default(false) | bool
|