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