17 lines
371 B
YAML
17 lines
371 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"
|