@Andreas_Herz thanks for your answer. My cron.daily folder contains a logorate file with the following code:
#!/bin/sh
/usr/sbin/logrotate -s /var/lib/logrotate/logrotate.status /etc/logrotate.conf
EXITVALUE=$?
if [ $EXITVALUE != 0 ]; then
/usr/bin/logger -t logrotate "ALERT exited abnormally with [$EXITVALUE]"
fi
exit 0
Will it work if I just copy this file to cron.daily?
Thanks in advance.
Regards,
Chris