13 lines
330 B
Django/Jinja
13 lines
330 B
Django/Jinja
#jinja2: lstrip_blocks: True
|
|
{{ ansible_managed | comment }}
|
|
|
|
# see "man logrotate" for details
|
|
{% if logrotate_options is defined and logrotate_options %}
|
|
{% for option in logrotate_options %}
|
|
{{ option }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
# packages drop log rotation information into this directory
|
|
include {{ logrotate_include_dir }}
|