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.
20 lines
354 B
YAML
20 lines
354 B
YAML
3 years ago
|
- hosts: testhost
|
||
|
gather_facts: false
|
||
|
tasks:
|
||
|
- name: Sample task name
|
||
|
debug:
|
||
|
msg: sample debug msg
|
||
|
|
||
|
- name: Umlaut output
|
||
|
debug:
|
||
|
msg: "äöü\néêè\nßï☺"
|
||
|
|
||
|
- name: Test to_yaml
|
||
|
debug:
|
||
|
msg: "{{ data | to_yaml }}"
|
||
|
vars:
|
||
|
data: |
|
||
|
line 1
|
||
|
line 2
|
||
|
line 3
|