27f547b4d3
* Fix missing ansible.builtin FQCNs in hardcoded action names (#71824) * Make sure hard-coded action names also check for FQCN. * Use _add_internal_fqcn() to avoid hardcoded lists and typoes. (cherry picked from commitda60525610
) * Replace some more FQCNs. (cherry picked from commit72302dd611
)
12 lines
362 B
YAML
12 lines
362 B
YAML
- name: Testing end_play with strategy {{ test_strategy | default('linear') }}
|
|
hosts: testhost:testhost2
|
|
gather_facts: no
|
|
strategy: "{{ test_strategy | default('linear') }}"
|
|
tasks:
|
|
- debug:
|
|
msg: "Testing end_play on host {{ inventory_hostname }}"
|
|
|
|
- ansible.builtin.meta: end_play
|
|
|
|
- fail:
|
|
msg: 'Failed to end using end_play'
|