mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
74ace093b8
Retains the old name by making a symlink. We can remove it in a later release.
16 lines
434 B
YAML
16 lines
434 B
YAML
---
|
|
|
|
# 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
|