20 lines
426 B
YAML
20 lines
426 B
YAML
---
|
|
|
|
- name: General tasks
|
|
include_tasks: general.yml
|
|
|
|
- name: Primary tasks
|
|
include_tasks: primary.yml
|
|
when: "inventory_hostname == geth_primary "
|
|
|
|
# - name: Rancher tasks
|
|
# include_tasks: rancher.yml
|
|
# when: "inventory_hostname == geth_primary "
|
|
|
|
- name: Worker tasks
|
|
include_tasks: worker.yml
|
|
when: "not inventory_hostname == geth_primary"
|
|
|
|
- name: Service tasks
|
|
include_tasks: services.yml
|