Hi, On Mon, 23 May 2005 19:06:59 -0700 Scott Leighton <.> wrote:
On Monday 23 May 2005 2:32 pm, pelibali wrote:
I'm sorry, just adding a supplementary info I forgot previously. I did also modify my '/usr/lib/cron/run-crons' and inserted the following lines
.. for CRONDIR in /etc/cron.{hourly,daily,weekly,twoweekly,monthly} ; do .. cron.twoweekly) TIME="-ctime +14 -or -ctime 14" ;; ..
Actually as I understand, that's why my scripts run at all.
You might want to change that to read....
cron.twoweekly) TIME="-cmin +11600 -or -cmin 11600" ;;
Plus change the cron.daily and cron.weekly lines to read...
cron.daily) TIME="-cmin +1440 -or -cmin 1440" ;; cron.weekly) TIME="-cmin +10080 -or -cmin 10080" ;;
See the archived discussion 'cron.daily run time' from earlier this month for the details on why.
Scott
Thanks so much! That time I just simply skipped that thread; I never thought, that I would have to study it carefully:) Pelibali