2020-09-09 14:17:43 +00:00
|
|
|
{{ ansible_managed | comment }}
|
|
|
|
|
2020-09-17 20:23:16 +00:00
|
|
|
{{ item.logs | join(" ") }} {
|
|
|
|
{% for option in item.options %}
|
2020-09-09 14:17:43 +00:00
|
|
|
{{ option }}
|
|
|
|
{% endfor %}
|
2020-09-17 20:23:16 +00:00
|
|
|
{% if item.postrotate|default([]) %}
|
2020-09-09 14:17:43 +00:00
|
|
|
postrotate
|
2020-09-17 20:23:16 +00:00
|
|
|
{% for line in item.postrotate %}
|
2020-09-09 14:17:43 +00:00
|
|
|
{{ line }}
|
|
|
|
{% endfor %}
|
|
|
|
endscript
|
|
|
|
{% endif %}
|
2020-09-17 20:23:16 +00:00
|
|
|
{% if item.preremove|default([]) %}
|
2020-09-09 14:17:43 +00:00
|
|
|
preremove
|
2020-09-17 20:23:16 +00:00
|
|
|
{% for line in item.preremove %}
|
2020-09-09 14:17:43 +00:00
|
|
|
{{ line }}
|
|
|
|
{% endfor %}
|
|
|
|
endscript
|
|
|
|
{% endif %}
|
2020-09-17 20:23:16 +00:00
|
|
|
{% if item.lastaction|default([]) %}
|
2020-09-09 14:17:43 +00:00
|
|
|
lastaction
|
2020-09-17 20:23:16 +00:00
|
|
|
{% for line in item.lastaction %}
|
2020-09-09 14:17:43 +00:00
|
|
|
{{ line }}
|
|
|
|
{% endfor %}
|
|
|
|
endscript
|
|
|
|
{% endif %}
|
2020-09-17 20:23:16 +00:00
|
|
|
{% if item.firstaction|default([]) %}
|
2020-09-09 14:17:43 +00:00
|
|
|
firstaction
|
2020-09-17 20:23:16 +00:00
|
|
|
{% for line in item.firstaction %}
|
2020-09-09 14:17:43 +00:00
|
|
|
{{ line }}
|
|
|
|
{% endfor %}
|
|
|
|
endscript
|
|
|
|
{% endif %}
|
|
|
|
}
|