summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/meta_tasks/test_end_play.yml
blob: 29489dc439b9e98da4f70ce925c7b6c46da41c41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
- 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 }}"

    - meta: end_play

    - fail:
        msg: 'Failed to end using end_play'