mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
434 B
YAML
17 lines
434 B
YAML
7 years ago
|
---
|
||
|
|
||
|
# In this task list, the 0th item is the Active unit and the 1st item is the
|
||
|
# standby unit.
|
||
|
|
||
|
- include: setup.yaml
|
||
|
when: ansible_play_batch[0] == inventory_hostname
|
||
|
|
||
|
- include: test-device-to-group.yaml
|
||
|
when: ansible_play_batch[0] == inventory_hostname
|
||
|
|
||
|
- include: test-pull-recent-device.yaml
|
||
|
when: ansible_play_batch[1] == inventory_hostname
|
||
|
|
||
|
- include: teardown.yaml
|
||
|
when: ansible_play_batch[0] == inventory_hostname
|