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 %}
|
||||
{{ 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 }}
|
||||
|
Loading…
Reference in New Issue
Block a user