mirror of
https://github.com/luzifer-ansible/logrotate.git
synced 2024-12-23 02:01:17 +00:00
13 lines
224 B
Django/Jinja
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 %}
|
|
}
|