mirror of
https://github.com/ansible/ansible.git
synced 2026-08-01 16:19:10 +02:00
11 lines
184 B
YAML
11 lines
184 B
YAML
- hosts: A,B,C
|
|
gather_facts: false
|
|
tasks:
|
|
- command: echo
|
|
notify: handler
|
|
handlers:
|
|
- name: handler
|
|
run_once: true
|
|
debug:
|
|
msg: handler ran once
|