mirror of https://github.com/ansible/ansible.git
Do not strip new lines in native jinja (#46751)
* Do not strip new lines in native jinja * Add changelog/fragmentpull/47397/head
parent
4d9504e775
commit
541255a2d8
@ -0,0 +1,2 @@
|
|||||||
|
bugfixes:
|
||||||
|
- templar - Do not strip new lines in native jinja - https://github.com/ansible/ansible/issues/46743
|
@ -0,0 +1,27 @@
|
|||||||
|
- block:
|
||||||
|
- name: Template file with newlines
|
||||||
|
template:
|
||||||
|
src: test_template_newlines.j2
|
||||||
|
dest: test_template_newlines.res
|
||||||
|
|
||||||
|
- name: Dump template file
|
||||||
|
stat:
|
||||||
|
path: test_template_newlines.j2
|
||||||
|
get_checksum: yes
|
||||||
|
register: template_stat
|
||||||
|
|
||||||
|
- name: Dump result file
|
||||||
|
stat:
|
||||||
|
path: test_template_newlines.res
|
||||||
|
get_checksum: yes
|
||||||
|
register: result_stat
|
||||||
|
|
||||||
|
- name: Check that number of newlines from original template are preserved
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- template_stat.stat.checksum == result_stat.stat.checksum
|
||||||
|
always:
|
||||||
|
- name: Clean up
|
||||||
|
file:
|
||||||
|
path: test_template_newlines.res
|
||||||
|
state: absent
|
@ -0,0 +1,4 @@
|
|||||||
|
First line.
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue