blob: 67c67cc5b4abebca95f516195a8f90ff8bf05f81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
- block:
- include: uninstall.yml
- include: deploy.yml
- include: status-check.yml
when: (operation) == "install" and (groups.druid|length) > 1
- block:
- include: uninstall.yml
when: (operation) == "uninstall" and (groups.druid|length) > 1
- block:
- include: standalone/uninstall.yml
- include: standalone/deploy.yml
- include: status-check.yml
when: (operation) == "install" and (groups.druid|length) == 1
- block:
- include: standalone/uninstall.yml
when: (operation) == "uninstall" and (groups.druid|length) == 1
|