mirror of https://github.com/ansible/ansible.git
Fixes #79023
(cherry picked from commit e1daaae42a)
pull/79068/head
parent
b5eba64882
commit
cd52ae459d
@ -0,0 +1,2 @@
|
||||
bugfixes:
|
||||
- "handlers - fix an issue where the ``flush_handlers`` meta task could not be used with FQCN: ``ansible.builtin.meta`` (https://github.com/ansible/ansible/issues/79023)"
|
||||
@ -0,0 +1,14 @@
|
||||
- hosts: A
|
||||
gather_facts: false
|
||||
tasks:
|
||||
- command: echo
|
||||
notify: handler
|
||||
|
||||
- ansible.builtin.meta: flush_handlers
|
||||
|
||||
- debug:
|
||||
msg: after flush
|
||||
handlers:
|
||||
- name: handler
|
||||
debug:
|
||||
msg: handler ran
|
||||
Loading…
Reference in New Issue