mirror of
https://github.com/GrapheneOS/infrastructure.git
synced 2024-10-01 00:55:42 -04:00
34 lines
620 B
Plaintext
34 lines
620 B
Plaintext
|
# see "man logrotate" for details
|
||
|
# rotate log files daily
|
||
|
daily
|
||
|
|
||
|
# keep 10 days worth of backlogs
|
||
|
rotate 10
|
||
|
|
||
|
# restrict maximum size of log files
|
||
|
#size 20M
|
||
|
|
||
|
# create new (empty) log files after rotating old ones
|
||
|
create
|
||
|
|
||
|
# uncomment this if you want your log files compressed
|
||
|
#compress
|
||
|
|
||
|
# Logs are moved into directory for rotation
|
||
|
# olddir /var/log/archive
|
||
|
|
||
|
# Ignore pacman saved files
|
||
|
tabooext + .pacorig .pacnew .pacsave
|
||
|
|
||
|
# Arch packages drop log rotation information into this directory
|
||
|
include /etc/logrotate.d
|
||
|
|
||
|
/var/log/wtmp {
|
||
|
create 0664 root utmp
|
||
|
}
|
||
|
|
||
|
/var/log/btmp {
|
||
|
missingok
|
||
|
create 0600 root utmp
|
||
|
}
|