mirror of
https://github.com/ansible/ansible.git
synced 2026-08-04 00:22:33 +02:00
Fixes #46447 Fixes #52561 Fixes #54991 Fixes #64611 Fixes #64999 Fixes #65067 Fixes #72725 Fixes #72781 Fixes #77616
12 lines
219 B
YAML
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'
|