summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/blocks/issue71306.yml
blob: 9762f6ee83885751ad78df42b066fa16e8ec7a6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- hosts: all
  gather_facts: no
  tasks:
    - block:
      - block:
        - block:
          - name: EXPECTED FAILURE
            fail:
            when: ansible_host == "host1"

          - debug:
              msg: "I am successful!"
            run_once: true
        rescue:
          - debug:
              msg: "Attemp 1 failed!"