mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
13 lines
328 B
YAML
13 lines
328 B
YAML
|
---
|
||
|
- hosts: testhost
|
||
|
gather_facts: False
|
||
|
tasks:
|
||
|
- file:
|
||
|
path: '{{ output_dir }}/café.txt'
|
||
|
state: 'absent'
|
||
|
# Smoketest that ansible_managed with non-ascii chars works:
|
||
|
# https://github.com/ansible/ansible/issues/27262
|
||
|
- template:
|
||
|
src: 'templates/café.j2'
|
||
|
dest: '{{ output_dir }}/café.txt'
|