summaryrefslogtreecommitdiff
path: root/conf/perldaemon.conf
diff options
context:
space:
mode:
Diffstat (limited to 'conf/perldaemon.conf')
-rw-r--r--conf/perldaemon.conf33
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=./
+