mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-01 16:23:10 +00:00
Preserve trailing newline after templating.
Jinja seems to eat trailing whitespace. A lot of tools complain about this: iptables-restore, iscsid...
This commit is contained in:
@@ -241,7 +241,10 @@ def template(text, vars, setup_cache, no_engine=False):
|
||||
return text
|
||||
else:
|
||||
template = jinja2.Template(text)
|
||||
return template.render(vars)
|
||||
res = template.render(vars)
|
||||
if text.endswith('\n') and not res.endswith('\n'):
|
||||
res = res + '\n'
|
||||
return res
|
||||
|
||||
def double_template(text, vars, setup_cache):
|
||||
return template(template(text, vars, setup_cache), vars, setup_cache)
|
||||
|
||||
Reference in New Issue
Block a user