Viyurz
d7190fcf6e
Roles which require backup (etebase, synapse & vaultwarden) have their tasks splitted into two files (backup.yml & update.yml), which are executed based on the value of run_backup & run_update variables. For consistency, move the update tasks to update.yml for every role, even if they do not have any backup task.
4 lines
110 B
YAML
4 lines
110 B
YAML
- name: Include update tasks
|
|
include_tasks:
|
|
file: update.yml
|
|
when: run_update | default(false) | bool
|