wie bekommt man logrotate dazu, den Output in ein anderes Verzeichnis etwa nach /var/log/apache2/old/ zu verschieben?
vi /etc/logrotate.d/apache2
Code: Alles auswählen
/var/log/apache2/*.log {
weekly
missingok
rotate 52
compress
delaycompress
notifempty
create 640 root adm
sharedscripts
postrotate
if [ -f /var/run/apache2.pid ]; then
/etc/init.d/apache2 restart > /dev/null
fi
endscript
}