diff options
| author | admin (alphacentauri) <default@mx.buetow.org> | 2017-02-12 13:12:44 +0000 |
|---|---|---|
| committer | admin (alphacentauri) <default@mx.buetow.org> | 2017-02-12 13:12:44 +0000 |
| commit | f5f29f37dd40b5446acdd59629c604af62bf8e56 (patch) | |
| tree | b98acd635e8d9b6d7daa071a0669a611e8938c29 | |
| parent | 396ce8c1030cf91b5dca0616919c6efb0caf8486 (diff) | |
| parent | cff6a46aadd6cc2915ded46fa8aa05c9caef9421 (diff) | |
Merge remote-tracking branch 'remotes/github/devel' into devel
| -rw-r--r-- | WISHLIST | 1 | ||||
| -rw-r--r-- | lib/PerlDaemonModules/ExampleModule.pm | 4 | ||||
| -rw-r--r-- | lib/PerlDaemonModules/ExampleModule2.pm | 4 |
3 files changed, 5 insertions, 4 deletions
@@ -1,4 +1,5 @@ * Add parallel module execution support (threads or forks) * Add special signal handling (e.g. trigger modules) * Allow to enable/disable time carry calculation +* Debian/Ubuntu .debs diff --git a/lib/PerlDaemonModules/ExampleModule.pm b/lib/PerlDaemonModules/ExampleModule.pm index 4e7d1c4..8e61f12 100644 --- a/lib/PerlDaemonModules/ExampleModule.pm +++ b/lib/PerlDaemonModules/ExampleModule.pm @@ -10,8 +10,8 @@ sub new ($$$) { my $self = bless { conf => $conf }, $class; - # Store some private module stuff - $self->{counter} = 0; + # Store some private persistent module stuff + $self->{counter} = 0; return $self; } diff --git a/lib/PerlDaemonModules/ExampleModule2.pm b/lib/PerlDaemonModules/ExampleModule2.pm index 2acf221..eaa5702 100644 --- a/lib/PerlDaemonModules/ExampleModule2.pm +++ b/lib/PerlDaemonModules/ExampleModule2.pm @@ -10,8 +10,8 @@ sub new ($$$) { my $self = bless { conf => $conf }, $class; - # Store some private module stuff - $self->{counter} = 0; + # Store some private persistent module stuff + $self->{counter} = 0; return $self; } |
