mirror of https://github.com/ansible/ansible.git
parent
4a62c4e3e4
commit
f78deccec2
@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- Fix ``end_play`` to end the current play only (https://github.com/ansible/ansible/issues/76672)
|
@ -0,0 +1,18 @@
|
||||
- name: Testing end_play with multiple plays with strategy {{ test_strategy | default('linear') }}
|
||||
hosts: testhost
|
||||
gather_facts: no
|
||||
strategy: "{{ test_strategy | default('linear') }}"
|
||||
tasks:
|
||||
- debug:
|
||||
msg: "Play 1"
|
||||
- meta: end_play
|
||||
- fail:
|
||||
msg: 'Failed to end using end_play'
|
||||
|
||||
- name: Testing end_play with multiple plays with strategy {{ test_strategy | default('linear') }}
|
||||
hosts: testhost
|
||||
gather_facts: no
|
||||
strategy: "{{ test_strategy | default('linear') }}"
|
||||
tasks:
|
||||
- debug:
|
||||
msg: "Play 2"
|
Loading…
Reference in New Issue