summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/handlers/test_handlers_any_errors_fatal.yml
blob: 6b791a3bbb3412dcb582a86f090fb3a5f4710f34 (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
- hosts:
    - A
    - B
  gather_facts: no
  any_errors_fatal: yes
  vars:
    output_dir: /tmp
  tasks:
    - name: Task one
      debug:
        msg: 'task 1'
      changed_when: yes
      notify: EXPECTED FAILURE failed_handler

    - meta: flush_handlers

    - name: This task should never happen
      file:
        path: "{{ output_dir }}/should_not_exist_{{ inventory_hostname }}"
        state: touch
  handlers:
    - name: EXPECTED FAILURE failed_handler
      fail:
      when: 'inventory_hostname == "A"'