mirror of
https://github.com/luzifer-ansible/logrotate.git
synced 2024-12-23 10:11:17 +00:00
14 lines
224 B
Text
14 lines
224 B
Text
|
# {{ ansible_managed }}
|
||
|
|
||
|
{{ item.paths | join(" ") }} {
|
||
|
{% for line in item.lines %}
|
||
|
{{ line }}
|
||
|
{% endfor %}
|
||
|
{% for name, command in item.scripts | default({}) %}
|
||
|
|
||
|
{{ name }}
|
||
|
{{ command }}
|
||
|
endscript
|
||
|
{% endfor %}
|
||
|
}
|