1
0
Fork 0

Updated to | json for backward compatibility

This commit is contained in:
waynegemmell 2019-03-11 20:46:15 +02:00 committed by GitHub
parent 06859f5fbb
commit 235f677bc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -22,11 +22,11 @@ logrotate-{{ key }}:
- template: jinja - template: jinja
- context: - context:
{% if value is mapping %} {% if value is mapping %}
path: {{ value.get('path', [key]) | tojson }} path: {{ value.get('path', [key]) | json }}
data: {{ value.get('config', []) | tojson }} data: {{ value.get('config', []) | json }}
{% else %} {% else %}
path: [ {{ key | tojson }} ] path: [ {{ key | json }} ]
data: {{ value | tojson }} data: {{ value | json }}
{% endif %} {% endif %}
{% endif %} {% endif %}
{%- endfor -%} {%- endfor -%}