mirror of https://github.com/ansible/ansible.git
Fixes #81666
(cherry picked from commit 2d5861c
)
pull/82092/head
parent
a05d254ca2
commit
3e2ce2d073
@ -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