mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-19 05:36:38 +02:00
Busybox does not need this and rsyslog does not work well with
this configuration, since it's not signaled to re-read the log file
after rotation
This reverts commit 5d232331b7
.
23 lines
481 B
Text
23 lines
481 B
Text
# see "man logrotate" for details
|
|
# rotate log files weekly
|
|
weekly
|
|
|
|
# keep 4 weeks worth of backlogs
|
|
rotate 4
|
|
|
|
# create new (empty) log files after rotating old ones
|
|
create
|
|
|
|
# use date as a suffix of the rotated file
|
|
dateext
|
|
|
|
# exclude alpine files
|
|
tabooext + .apk-new
|
|
|
|
# uncomment this if you want your log files compressed
|
|
compress
|
|
|
|
# apk packages drop log rotation information into this directory
|
|
include /etc/logrotate.d
|
|
|
|
# system-specific logs may be also be configured here.
|