Thanks to all
This turned out to be the solution
from Dejan Muhamedagic <muja_at_galeb.etf.bg.ac.yu>
You have multiple cron jobs running at the same time (because they
cannot finish in 1 minute) so they are probably trying to delete same
files and one of them normaly fails.
You should revise the rest of root's crontab entries and try to collapse
multiple into one.
0 0 * * * find / -name core -exec rm {} \;
> * 1 * * * find / -name *.pine-* -exec rm {} \;
> * 2 * * * find / -name pinerc* -exec rm {} \;
> * 3 * * * find /var/preserve -mtime +7 -type f -exec rm -f {} \;
> * 4 * * * find /tmp -type f -atime +1 -exec rm -f {} \;
thanks to all for there help
RKJ
Received on Mon Mar 24 1997 - 16:21:30 NZST