142732dba9
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>
12 lines
219 B
YAML
12 lines
219 B
YAML
---
|
|
- template:
|
|
src: test
|
|
dest: "{{ output_dir }}/templated_test"
|
|
register: custom_template_result
|
|
|
|
- debug:
|
|
msg: "{{ custom_template_result }}"
|
|
|
|
- assert:
|
|
that:
|
|
- custom_template_result.changed
|