mirror of https://github.com/ansible/ansible.git
dataloader: check exact value of dir (#52021)
Include path in role with directory which has 'tasks' as end. For example, roles/sometasks/templates is now considered while searching path. Fixes: #42585 Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>pull/52021/merge
parent
b0306f51d7
commit
142732dba9
@ -0,0 +1,12 @@
|
||||
---
|
||||
- template:
|
||||
src: test
|
||||
dest: "{{ output_dir }}/templated_test"
|
||||
register: custom_template_result
|
||||
|
||||
- debug:
|
||||
msg: "{{ custom_template_result }}"
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- custom_template_result.changed
|
@ -0,0 +1 @@
|
||||
Sample Text
|
@ -0,0 +1,4 @@
|
||||
- hosts: testhost
|
||||
gather_facts: yes
|
||||
roles:
|
||||
- { role: custom_tasks }
|
Loading…
Reference in New Issue