mirror of https://github.com/ansible/ansible.git
Fixes #81722
(cherry picked from commit 1e7f7875c6
)
pull/81828/head
parent
8f621fd6cd
commit
2a29739ee6
@ -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