Parcourir la source

Merge pull request #42 from waynegemmell/patch-2

Context data wrapped with tojson filter.
tags/v0.9.0
Niels Abspoel il y a 5 ans
Parent
révision
ff2d7c790b
Aucun compte lié à l'adresse e-mail de l'auteur
1 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. +4
    -4
      logrotate/jobs.sls

+ 4
- 4
logrotate/jobs.sls Voir le fichier

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

Chargement…
Annuler
Enregistrer