Irgendwie scheint logrotate auf einer meiner Servern nicht richtig zu funktionieren.
Mein /var/log sieht total chaotisch und unübersichtlich aus.
Das bedeutet, dass ich Log-Files habe wie:
acpid.log
acpid.log.1
acpid.log.2
acpid.log.3
acpid.log.4
acpid.log.5
auth.log
auth.log.1
auth.log.2
auth.log.3
auth.log.4
auth.log.5
usw.
Ein archive/ Directory gibt es, aber das ist total leer...
Meine Config sieht folgendermaßen aus: (die ich nicht geändert habe)
cat /etc/logrotate.conf
# see "man logrotate" for details
# rotate log files weekly
weekly
# keep 4 weeks worth of backlogs
rotate 4
# 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 {
monthly
create 0664 root root
rotate 1
}