Files
ansible/test/integration/targets/handlers/test_notify_included.yml
Martin KrizekandGitHub ce6c9befb8 Do not allow handlers from dynamic includes to be notified (#78399)
* Do not allow handlers from dynamic includes to be notified
2022-08-02 11:21:21 -04:00

17 lines
366 B
YAML

- name: This worked unintentionally, make sure it does not anymore
hosts: localhost
gather_facts: false
tasks:
- command: echo
notify:
- include_handler
- meta: flush_handlers
- command: echo
notify:
- handler_from_include
handlers:
- name: include_handler
include_tasks: test_notify_included-handlers.yml