mirror of https://github.com/ansible/ansible.git
Allow for searching handler subdir for included task via include_role (#81733)
Fixes #81722pull/81763/head
parent
86fd7026a8
commit
1e7f7875c6
@ -0,0 +1,2 @@
|
|||||||
|
bugfixes:
|
||||||
|
- Allow for searching handler subdir for included task via include_role (https://github.com/ansible/ansible/issues/81722)
|
@ -0,0 +1,2 @@
|
|||||||
|
- debug:
|
||||||
|
msg: handler ran
|
@ -0,0 +1,2 @@
|
|||||||
|
- name: handler
|
||||||
|
include_tasks: include_handlers.yml
|
@ -0,0 +1,2 @@
|
|||||||
|
- command: echo
|
||||||
|
notify: handler
|
@ -0,0 +1,5 @@
|
|||||||
|
- hosts: localhost
|
||||||
|
gather_facts: false
|
||||||
|
tasks:
|
||||||
|
- include_role:
|
||||||
|
name: include_role_include_tasks_handler
|
Loading…
Reference in New Issue