Ich habe eine logrotate
Konfigurationsdatei eingefügt /etc/logrotate.d/
und erwartet, dass sich die Protokolle zu einem konsistenten Zeitpunkt drehen. Sie sind jedoch nicht ... Protokollrotationszeiten sind scheinbar zufällig +/- eine Stunde.
Warum sind die Startzeiten der Protokollrotation zufällig und wie kann ich dies ändern?
Information: Meine logrotate Konfigurationsdatei sieht so aus ...
/opt/backups/network/*.conf {
copytruncate
rotate 30
daily
create 644 root root
dateext
maxage 30
missingok
notifempty
compress
delaycompress
postrotate
## Create symbolic links in daily/
PATH=`/usr/bin/dirname $1`;
FILE=`/bin/basename $1`;
/bin/ln -s $1 $PATH/daily/$FILE
endscript
}