2021-11-22 18:08:25 +01:00
|
|
|
# see "man logrotate" for details
|
2021-03-30 06:01:43 +02:00
|
|
|
{{ ansible_managed | comment }}
|
|
|
|
|
2021-11-22 18:08:25 +01:00
|
|
|
# global options do not affect preceding include directives
|
|
|
|
|
|
|
|
# rotate log files weekly
|
2021-03-30 06:01:43 +02:00
|
|
|
weekly
|
2021-11-22 18:08:25 +01:00
|
|
|
|
|
|
|
# keep 4 weeks worth of backlogs
|
2021-03-30 06:01:43 +02:00
|
|
|
rotate 4
|
2021-11-22 18:08:25 +01:00
|
|
|
|
|
|
|
# create new (empty) log files after rotating old ones
|
2021-03-30 06:01:43 +02:00
|
|
|
create
|
|
|
|
|
2021-11-22 18:08:25 +01:00
|
|
|
# use date as a suffix of the rotated file
|
|
|
|
#dateext
|
|
|
|
|
|
|
|
# uncomment this if you want your log files compressed
|
|
|
|
#compress
|
|
|
|
|
|
|
|
# packages drop log rotation information into this directory
|
2021-03-30 06:01:43 +02:00
|
|
|
include /etc/logrotate.d
|
2021-11-22 18:08:25 +01:00
|
|
|
|
|
|
|
# system-specific logs may also be configured here.
|