mirror of https://github.com/ansible/ansible.git
parent
000cf1dd46
commit
2d5861c185
@ -0,0 +1,2 @@
|
|||||||
|
bugfixes:
|
||||||
|
- Fix ``run_once`` being incorrectly interpreted on handlers (https://github.com/ansible/ansible/issues/81666)
|
||||||
@ -0,0 +1,10 @@
|
|||||||
|
- hosts: A,B,C
|
||||||
|
gather_facts: false
|
||||||
|
tasks:
|
||||||
|
- command: echo
|
||||||
|
notify: handler
|
||||||
|
handlers:
|
||||||
|
- name: handler
|
||||||
|
run_once: true
|
||||||
|
debug:
|
||||||
|
msg: handler ran once
|
||||||
Loading…
Reference in New Issue