summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/handlers/54991.yml
blob: c7424edb26db21ff9958ae3ff338fc07ee15a101 (plain)
1
2
3
4
5
6
7
8
9
10
11
- hosts: A,B,C,D
  gather_facts: false
  serial: 2
  tasks:
    - command: echo
      notify: handler
  handlers:
    - name: handler
      debug:
        msg: 'handler ran'
      failed_when: inventory_hostname == 'A'