You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/handlers/54991.yml

12 lines
219 B
YAML

- 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'