chore: fix jinja syntax
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
597679b649
commit
2ce1d66d50
@ -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 }}
|
||||||
|
Loading…
Reference in New Issue
Block a user