# Set proper time zone (TZ)
     #
     TZ="---0"
     export TZ
     #
     # Get the process ids of all crons, using awk to cut out process id
     # instead of cut because of problem with cut on AP10s.
     #
     ps -el | awk '/cron/ { print $4 }' |
     #
     # Read each process id for a cron and then kill that cron.
     #
     while read line
     do
         kill $line
     done
     #
     # Wait for crons to die, grep has an exit value of 0 when the
     # search works.
     #
     no_cron=0

     while [ $no_cron -eq 0 ]
     do
         ps -el | grep cron
         no_cron=$?
     done
     #
     # Move current cron log file to OLDlog.
     #
     mv -f /var/cron/log /var/cron/OLDlog
touch /var/cron/log
     #
     # Start up a new cron process.
     #
     /etc/cron </dev/null >/dev/null 2>&1

