summaryrefslogtreecommitdiff
path: root/PerlDaemon.pl
diff options
context:
space:
mode:
Diffstat (limited to 'PerlDaemon.pl')
-rw-r--r--PerlDaemon.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/PerlDaemon.pl b/PerlDaemon.pl
index c788f3e..4e8ec3a 100644
--- a/PerlDaemon.pl
+++ b/PerlDaemon.pl
@@ -9,7 +9,7 @@ use Shell qw(mv);
use POSIX qw(setsid strftime);
use Logger;
-use DaemonLogic;
+use RunModule;
$| = 1;
@@ -142,12 +142,12 @@ sub alive ($) {
sub daemonloop ($) {
my $conf = shift;
- my $dlogic = DaemonLogic->new($conf);
+ my $rmodule = RunModule->new($conf);
my $loopinterval = $conf->{'daemon.loopinterval'};
my $loop = shift;
for (my $i = 1;;++$i) {
- $dlogic->do();
+ $rmodule->do();
sleep $loopinterval;
alive $conf;
}