0e28ab4528
Fixes #27237
12 lines
253 B
YAML
12 lines
253 B
YAML
- hosts: A,B
|
|
gather_facts: no
|
|
tasks:
|
|
- debug:
|
|
changed_when: true
|
|
notify:
|
|
- handler
|
|
handlers:
|
|
- name: handler
|
|
debug:
|
|
msg: "handler {{ inventory_hostname }}"
|
|
run_once: "{{ testvar | default(False) }}"
|