Re: what namespace for future new module ?

2005-03-08 Thread James E Keenan
Cdric Bouvier wrote: I have something almost working right now. I'd like to upload it to CPAN (after I have at least improved the documentation kindly written by Module::Starter, that is) but I'd like your enlightened opinion on what name it should bear. I first thought of Test::Distributed, but

RFC: some thoughts about daemons and related modules

2005-03-08 Thread Baltasar Cevc
Hi everybody, yesterday, when writing the core of another daemon intended to run on one of the servers I administer, I caught myself copy-pasting code from other daemons. Not some lines but more or less the whole main part. After a bit of thinking, I realized that there must be a better solution.

Re: RFC: some thoughts about daemons and related modules

2005-03-08 Thread Dariush Pietrzak
Proc::Daemonzier would take care of - creating a pid file - checking if the daemon is really running if the pid file exists (detection of stale pid files) - starting only if no instance is running - restart the daemon|signal him to reconfigure itself (see example) Add reliable