mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
13 lines
219 B
YAML
13 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
|