vps/roles/homepage/tasks/main.yml
Viyurz d7190fcf6e
Roles: Move update tasks to update.yml for consistency.
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.
2024-02-23 16:50:51 +01:00

4 lines
110 B
YAML

- name: Include update tasks
include_tasks:
file: update.yml
when: run_update | default(false) | bool