mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-06-05 07:47:12 +00:00
10 lines
283 B
YAML
10 lines
283 B
YAML
- name: create local file with unicode filename and content
|
|
lineinfile:
|
|
dest: "{{ output_dir }}/语/汉语.txt"
|
|
create: true
|
|
line: 汉语
|
|
|
|
- name: remove local file with unicode filename and content
|
|
file:
|
|
path: "{{ output_dir }}/语/汉语.txt"
|
|
state: absent
|