ansible-borgbackup/tasks/main.yml

15 lines
324 B
YAML
Raw Normal View History

2017-09-07 18:35:01 +00:00
---
- include: install.yml
2017-09-12 18:49:20 +00:00
when: >
2017-10-01 11:05:59 +00:00
borgbackup_required == True or
2017-10-01 11:13:31 +00:00
inventory_hostname in groups.backupservers
2017-09-07 18:35:01 +00:00
- include: borg-server.yml
when: inventory_hostname in groups.backupservers
- include: borg-client.yml
2017-09-12 18:49:20 +00:00
when: >
2017-10-01 11:05:59 +00:00
borgbackup_required == True and
2017-09-12 18:49:20 +00:00
inventory_hostname not in groups.backupservers