Updated to | json for backward compatibility

pull/42/head
waynegemmell 4 years ago committed by GitHub
parent 06859f5fbb
commit 235f677bc6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      logrotate/jobs.sls

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

Loading…
Cancel
Save