21 lines
478 B
Django/Jinja
21 lines
478 B
Django/Jinja
# {{ ansible_managed }}
|
|
{{ item.file }} {
|
|
su {{ item.user }} {{ item.group }}
|
|
rotate {{item.keep_files}}
|
|
maxage {{item.keep_days}}
|
|
daily
|
|
compress
|
|
delaycompress
|
|
dateext
|
|
missingok
|
|
compresscmd /usr/bin/xz
|
|
uncompresscmd /usr/bin/unxz
|
|
compressext .xz
|
|
notifempty
|
|
{% if item.copytruncate %}
|
|
copytruncate
|
|
{% else %}
|
|
create 644 {{ item.user }} {{ item.group }}
|
|
{% endif %}
|
|
}
|