10 lines
221 B
YAML
10 lines
221 B
YAML
|
- name: Include backup tasks
|
||
|
include_tasks:
|
||
|
file: backup.yml
|
||
|
when: run_backup | default(false) | bool
|
||
|
|
||
|
- name: Include update tasks
|
||
|
include_tasks:
|
||
|
file: update.yml
|
||
|
when: run_update | default(false) | bool
|