chore: fix jinja syntax
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2021-05-25 23:32:55 +02:00
parent 597679b649
commit 2ce1d66d50
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
1 changed files with 4 additions and 4 deletions

View File

@ -8,28 +8,28 @@
{% for option in definition.options %}
{{ option }}
{% endfor %}
{% if definition.postrotate|default([]) %}
{% if definition.postrotate | default([]) %}
postrotate
{% for line in definition.postrotate %}
{{ line }}
{% endfor %}
endscript
{% endif %}
{% if definition.preremove|default([]) %}
{% if definition.preremove | default([]) %}
preremove
{% for line in definition.preremove %}
{{ line }}
{% endfor %}
endscript
{% endif %}
{% if definition.lastaction|default([]) %}
{% if definition.lastaction | default([]) %}
lastaction
{% for line in definition.lastaction %}
{{ line }}
{% endfor %}
endscript
{% endif %}
{% if definition.firstaction|default([]) %}
{% if definition.firstaction | default([]) %}
firstaction
{% for line in definition.firstaction %}
{{ line }}