summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/handlers/test_flush_in_rescue_always.yml
blob: 7257a42a6d693ca744f3d5155806bc9dcfd9182f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
- hosts: A,B
  gather_facts: false
  tasks:
    - block:
        - name: EXPECTED_FAILURE
          fail:
          when: inventory_hostname == 'A'
      rescue:
        - command: echo
          notify: handler_rescue

        - meta: flush_handlers

        - set_fact:
            was_in_rescue: true

        - name: EXPECTED_FAILURE
          fail:
      always:
        - assert:
            that:
              - hostvars['A']['was_in_rescue']|default(false)
            success_msg: lockstep works

        - command: echo
          notify: handler_always

        - meta: flush_handlers
  handlers:
    - name: handler_rescue
      debug:
        msg: handler ran in rescue
    - name: handler_always
      debug:
        msg: handler ran in always