1
0
Fork 0

fix: corrected indentation on context in file.managed states

This commit is contained in:
Eric Veiras Galisson 2019-04-11 15:04:32 +02:00
parent ff2d7c790b
commit ef88f3d047
1 changed files with 4 additions and 4 deletions

View File

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