15 lines
329 B
YAML
15 lines
329 B
YAML
|
- name: Include backup tasks
|
||
|
include_tasks:
|
||
|
file: backup.yml
|
||
|
when: run_backup | default(false) | bool
|
||
|
|
||
|
- name: Include setup tasks
|
||
|
include_tasks:
|
||
|
file: setup.yml
|
||
|
when: run_setup | default(false) | bool
|
||
|
|
||
|
- name: Include update tasks
|
||
|
include_tasks:
|
||
|
file: update.yml
|
||
|
when: run_update | default(false) | bool
|