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

13 lines
210 B
YAML
Raw Normal View History

2019-07-09 11:45:03 +02:00
---
- action: init
2019-07-09 11:45:03 +02:00
- import_tasks: common.yml
when: is_borg_server or borg_server is defined
2019-07-09 11:45:03 +02:00
- import_tasks: server.yml
when: is_borg_server
2019-07-09 11:45:03 +02:00
- import_tasks: client.yml
when: borg_server is defined
...