13 lines
330 B
Plaintext
13 lines
330 B
Plaintext
|
#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 }}
|