Commit 7e9ce42f authored by Vincent Pelletier's avatar Vincent Pelletier

erp5.erp5: Do not escape publish_dict's values.

They contain section references, not immediate values, so they are intended
to be evaluated by buildout and hence must not be escaped.
parent b6a8de2f
......@@ -296,7 +296,7 @@ extra-context =
[template-erp5]
< = download-base
filename = instance-erp5.cfg.in
md5sum = dcfc083916510848eabd73660397d741
md5sum = baa8fe283c89cfbc314e033e78ed5705
[template-neo]
< = download-base
......
......@@ -208,7 +208,7 @@ recipe = slapos.cookbook:publish.serialised
deadlock-debugger-password = ${deadlock-debugger-password:passwd}
inituser-password = ${inituser-password:passwd}
{% for name, value in publish_dict.items() -%}
{{ name }} = {{ dumps(value) }}
{{ name }} = {{ value }}
{% endfor -%}
[buildout]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment