mirror of
https://github.com/ansible/ansible.git
synced 2026-07-28 08:05:22 +02:00
* First pass of adding yaml result format output to default callback * Add clog frag * flow style always false * Further normalization of results across distros * no lossy, now pretty * Fix env var in runme.sh * Rename variable to better self document * include NativeJinjaUnsafeText * Linting cleanup * Add tests specific to the prior yaml callback * Make data munging more exact, following the checks in libyaml/pyyaml * Remove unused import * Extend comment * more correct and some comments * Fix consistency of tab vs space in this section of the file * Add str representer * be cooler * faster character filtering * Clarify None as a sentinel for default behavior * Flip filtering logic to avoid CRLF issues with 'space break' filtering * Py3 change and comment about the use of __call__ Co-authored-by: Matt Davis <mrd@redhat.com>
20 lines
354 B
YAML
20 lines
354 B
YAML
- 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
|