http://qs1969.pair.com?node_id=263404


in reply to Disowning CRON

Well, either fork off the process as soon as you've realized you need a new daemon, or simply start the script in the background, freeing it from cron.
You have moved into a dark place.
It is pitch black. You are likely to be eaten by a grue.

Replies are listed 'Best First'.
Re: Re: Disowning CRON
by daveime (Novice) on Jun 05, 2003 at 16:53 UTC
    Many thanks to hardburn, zby, daeve, Dog and Pony !!

    I'll try starting as a background from cron ... that seems the easiest solution.

    Dave
      If you're writing in a Linux box (i cant vouch for the other unixes) you can check out the list of start-up scripts in /etc/init.d.

      A few scripts are written to be 're-startable', and will find and restart the process in question when run with the option '-restart'.

      These scripts would give you a good idea of how they look for a process already running, in order to stop it, and start it again.

      Sam