Parcourir la source

Merge pull request #43 from daks/context-fix

fix: corrected indentation on context in file.managed states
tags/v0.9.0
Nicolas Rodriguez il y a 5 ans
Parent
révision
f99e3b71ac
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]) | 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 -%}

Chargement…
Annuler
Enregistrer