ansible/roles/logrotate/templates/logrotate.conf

25 lines
526 B
Plaintext
Raw Normal View History

2021-11-22 18:08:25 +01:00
# see "man logrotate" for details
{{ ansible_managed | comment }}
2021-11-22 18:08:25 +01:00
# global options do not affect preceding include directives
# rotate log files weekly
weekly
2021-11-22 18:08:25 +01:00
# keep 4 weeks worth of backlogs
rotate 4
2021-11-22 18:08:25 +01:00
# create new (empty) log files after rotating old ones
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
include /etc/logrotate.d
2021-11-22 18:08:25 +01:00
# system-specific logs may also be configured here.