1
0
Fork 0
This repository has been archived on 2025-03-10. You can view files and clone it, but cannot push or open issues or pull requests.
ansible-role-borg/tasks/main.yml

18 lines
326 B
YAML
Raw Normal View History

2019-07-09 11:45:03 +02:00
---
- import_tasks: client_init.yml
when: borg_server is defined
2021-05-02 18:42:30 +02:00
- action: borg_validate
- action: borg_init
2019-07-09 11:45:03 +02:00
- import_tasks: common.yml
2021-05-02 18:42:01 +02:00
when: borg.server.clients != [] or borg_server is defined
2019-07-09 11:45:03 +02:00
- import_tasks: server.yml
2021-05-02 18:42:01 +02:00
when: borg.server.clients != []
2019-07-09 11:45:03 +02:00
- import_tasks: client.yml
when: borg_server is defined
...