Merge pull request #42 from waynegemmell/patch-2
Context data wrapped with tojson filter.
This commit is contained in:
commit
ff2d7c790b
1 changed files with 4 additions and 4 deletions
|
@ -22,11 +22,11 @@ logrotate-{{ key }}:
|
|||
- template: jinja
|
||||
- context:
|
||||
{% if value is mapping %}
|
||||
path: {{ value.get('path', [key]) }}
|
||||
data: {{ value.get('config', []) }}
|
||||
path: {{ value.get('path', [key]) | json }}
|
||||
data: {{ value.get('config', []) | json }}
|
||||
{% else %}
|
||||
path: [ {{ key }} ]
|
||||
data: {{ value }}
|
||||
path: [ {{ key | json }} ]
|
||||
data: {{ value | json }}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{%- endfor -%}
|
||||
|
|
Loading…
Reference in a new issue