diff options
| author | Paul Buetow <paul@buetow.org> | 2011-06-13 09:44:32 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2011-06-13 09:44:32 +0000 |
| commit | 82eaabb6e7170514753f92804da5e6ea676caa0c (patch) | |
| tree | d7a3e6fa2d2d62ddb6339858e6f84cad88734d68 /conf | |
| parent | ddc8ba05b25c754ef41067a9127cfe2bb9f2bf22 (diff) | |
Released PerlDaemon v1.2
Diffstat (limited to 'conf')
| -rw-r--r-- | conf/perldaemon.conf | 33 |
1 files changed, 24 insertions, 9 deletions
diff --git a/conf/perldaemon.conf b/conf/perldaemon.conf index aa5464f..9a6f6b4 100644 --- a/conf/perldaemon.conf +++ b/conf/perldaemon.conf @@ -1,9 +1,24 @@ -# Minimal Perl Daemon Sample Configuration -daemon.wd = ./ -daemon.loopinterval = 1 -daemon.alivefile = ./run/perldaemon.alive -daemon.pidfile = ./run/perldaemon.pid -daemon.logfile = ./log/perldaemon.log -daemon.modules.dir = ./lib/PerlDaemonModules -daemon.modules.runinterval = 3 -daemon.daemonize = yes +# Path to the logfile +daemon.logfile=./log/perldaemon.log + +# The amount of seconds until the next event look takes place +daemon.loopinterval=1 + +# Path to the modules dir +daemon.modules.dir=./lib/PerlDaemonModules + +# Specifies either the daemon should run in daemon or foreground mode +daemon.daemonize=yes + +# Path to the pidfile +daemon.pidfile=./run/perldaemon.pid + +# Each module should run every runinterval seconds +daemon.modules.runinterval=3 + +# Path to the alive file (is touched every loopinterval seconds, usable to monitor) +daemon.alivefile=./run/perldaemon.alive + +# Specifies the working directory +daemon.wd=./ + |
