aboutsummaryrefslogtreecommitdiff
path: root/tasks/main.yml
blob: 2606ecf15d3b53acdcb4a97ab6d89f6f11b5cf6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
- import_tasks: client_init.yml
  when: borg_server is defined

- action: borg_validate

- action: borg_init

- import_tasks: common.yml
  when: borg.server.clients != [] or borg_server is defined

- import_tasks: server.yml
  when: borg.server.clients != []

- import_tasks: client.yml
  when: borg_server is defined
...