mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.3 KiB
YAML
36 lines
1.3 KiB
YAML
- hosts: all
|
|
gather_facts: no
|
|
serial: 1
|
|
tasks:
|
|
|
|
### raw with unicode arg and output
|
|
|
|
- name: raw with unicode arg and output
|
|
raw: echo 汉语
|
|
register: command
|
|
- name: check output of raw with unicode arg and output
|
|
assert: { that: "'汉语' in command.stdout" }
|
|
|
|
### copy local file with unicode filename and content
|
|
|
|
- name: create local file with unicode filename and content
|
|
local_action: lineinfile dest=/tmp/ansible-local-汉语 create=true line=汉语
|
|
- name: remove remote file with unicode filename and content
|
|
file: path=/tmp/ansible-remote-汉语 state=absent
|
|
- name: copy local file with unicode filename and content
|
|
copy: src=/tmp/ansible-local-汉语 dest=/tmp/ansible-remote-汉语
|
|
|
|
### fetch remote file with unicode filename and content
|
|
|
|
- name: remove local file with unicode filename and content
|
|
local_action: file path=/tmp/ansible-local-汉语 state=absent
|
|
- name: fetch remote file with unicode filename and content
|
|
fetch: src=/tmp/ansible-remote-汉语 dest=/tmp/ansible-local-汉语 fail_on_missing=true validate_checksum=true flat=true
|
|
|
|
### remove local and remote temp files
|
|
|
|
- name: remove local temp file
|
|
local_action: file path=/tmp/ansible-local-汉语 state=absent
|
|
- name: remove remote temp file
|
|
file: path=/tmp/ansible-remote-汉语 state=absent
|