Explorar el Código

Merge pull request #42 from waynegemmell/patch-2

Context data wrapped with tojson filter.
tags/v0.9.0
Niels Abspoel hace 5 años
padre
commit
ff2d7c790b
Ninguna cuenta vinculada a la dirección de correo electrónico del committer
Se han modificado 1 ficheros con 4 adiciones y 4 borrados
  1. +4
    -4
      logrotate/jobs.sls

+ 4
- 4
logrotate/jobs.sls Ver fichero

@@ -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 -%}

Cargando…
Cancelar
Guardar