logrotate/templates/logrotate.j2
Knut Ahlers 29a460a3f8
Initial version
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-01-13 13:39:41 +01:00

13 lines
224 B
Django/Jinja

# {{ ansible_managed }}
{{ item.paths | join(" ") }} {
{% for line in item.lines %}
{{ line }}
{% endfor %}
{% for name, command in item.scripts | default({}) %}
{{ name }}
{{ command }}
endscript
{% endfor %}
}