summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/file/tasks/unicode_path.yml
blob: a4902a9b5ce3047b621a8464a3a608ca5db0d458 (plain)
1
2
3
4
5
6
7
8
9
10
- name: create local file with unicode filename and content
  lineinfile:
    dest: "{{ remote_tmp_dir_test }}/语/汉语.txt"
    create: true
    line: 汉语

- name: remove local file with unicode filename and content
  file:
    path: "{{ remote_tmp_dir_test }}/语/汉语.txt"
    state: absent