system-config/playbooks/roles/logrotate/templates/logrotate.conf.j2

24 lines
451 B
Django/Jinja

{{ logrotate_file_name }} {
{% if logrotate_compress %}
compress
{% endif %}
{% if logrotate_copytruncate %}
copytruncate
{% endif %}
{% if logrotate_delaycompress %}
delaycompress
{% endif %}
{% if logrotate_missingok %}
missingok
{% endif %}
rotate {{ logrotate_rotate }}
{% if logrotate_frequency != "size" %}
{{ logrotate_frequency }}
{% else %}
size {{ logrotate_size }}
{% endif %}
{% if logrotate_notifempty %}
notifempty
{% endif %}
}