summaryrefslogtreecommitdiff
path: root/samples/test_blocks_of_blocks.yml
blob: 2430ab0da098eca8e92af3f25e97e4aafc80f58c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
- hosts: localhost
  gather_facts: no
  tasks:
  - block:
    - block:
      - block:
        - block:
          - debug: msg="are we there yet?"
        always:
        - debug: msg="a random always block"
      - fail:
      rescue:
      - debug: msg="rescuing from the fail"
      when: not skip_me|default(False)