aa3e4cc2dd
* logrotate-addextension.patch * logrotate-autoext.patch * logrotate-conf.patch * logrotate-fix-test62_with_bash-4.4.patch * logrotate-manpage_config_clarification.patch * logrotate-var-lib-misc.patch * logrotate-3.7.8-suse.patch OBS-URL: https://build.opensuse.org/package/show/Base:System/logrotate?expand=0&rev=57
24 lines
517 B
Plaintext
24 lines
517 B
Plaintext
# 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
|
|
|
|
# uncomment this if you want your log files compressed
|
|
compress
|
|
|
|
# comment these to switch compression to use gzip or another
|
|
# compression scheme
|
|
compresscmd /usr/bin/xz
|
|
uncompresscmd /usr/bin/xzdec
|
|
|
|
# RPM packages drop log rotation information into this directory
|
|
include /etc/logrotate.d
|