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 %} {% for option in definition.options %}
{{ option }} {{ option }}
{% endfor %} {% endfor %}
{% if definition.postrotate|default([]) %} {% if definition.postrotate | default([]) %}
postrotate postrotate
{% for line in definition.postrotate %} {% for line in definition.postrotate %}
{{ line }} {{ line }}
{% endfor %} {% endfor %}
endscript endscript
{% endif %} {% endif %}
{% if definition.preremove|default([]) %} {% if definition.preremove | default([]) %}
preremove preremove
{% for line in definition.preremove %} {% for line in definition.preremove %}
{{ line }} {{ line }}
{% endfor %} {% endfor %}
endscript endscript
{% endif %} {% endif %}
{% if definition.lastaction|default([]) %} {% if definition.lastaction | default([]) %}
lastaction lastaction
{% for line in definition.lastaction %} {% for line in definition.lastaction %}
{{ line }} {{ line }}
{% endfor %} {% endfor %}
endscript endscript
{% endif %} {% endif %}
{% if definition.firstaction|default([]) %} {% if definition.firstaction | default([]) %}
firstaction firstaction
{% for line in definition.firstaction %} {% for line in definition.firstaction %}
{{ line }} {{ line }}