summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2011-06-02 09:18:09 +0000
committerPaul Buetow <paul@buetow.org>2011-06-02 09:18:09 +0000
commit58aa177115f4a879356ed4697e53ee3466233bd6 (patch)
tree164f472570b4877199928b1366aef3a087042586
parent90e682008264320189a7f0c8bf65f91c9f22b24e (diff)
Added source headers
-rw-r--r--TODO1
-rwxr-xr-xbin/perldaemon1
-rw-r--r--lib/PerlDaemon/PerlDaemon.pl3
-rw-r--r--lib/PerlDaemon/RunModules.pm2
-rw-r--r--lib/PerlDaemonModules/ExampleModule.pm2
5 files changed, 6 insertions, 3 deletions
diff --git a/TODO b/TODO
index 3b8f35f..437766c 100644
--- a/TODO
+++ b/TODO
@@ -1,2 +1 @@
* Add documentation
-* Add source headers (c)
diff --git a/bin/perldaemon b/bin/perldaemon
index 2a3a65f..b488163 100755
--- a/bin/perldaemon
+++ b/bin/perldaemon
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
+# PerlDaemon (c) 2010, 2011, Dipl.-Inform. (FH) Paul Buetow (http://perldaemon.buetow.org)
declare -r ARG=$1
declare -a LIBPATHS=(./lib ../lib /lib /usr/lib /usr/local/lib /opt/lib)
diff --git a/lib/PerlDaemon/PerlDaemon.pl b/lib/PerlDaemon/PerlDaemon.pl
index 15c29a4..bb1d7c8 100644
--- a/lib/PerlDaemon/PerlDaemon.pl
+++ b/lib/PerlDaemon/PerlDaemon.pl
@@ -1,6 +1,5 @@
#!/usr/bin/perl
-
-# Minimal PerlDaemon (c) 2011 Paul Buetow
+# PerlDaemon (c) 2010, 2011, Dipl.-Inform. (FH) Paul Buetow (http://perldaemon.buetow.org)
use strict;
use warnings;
diff --git a/lib/PerlDaemon/RunModules.pm b/lib/PerlDaemon/RunModules.pm
index b57dc61..2bf960b 100644
--- a/lib/PerlDaemon/RunModules.pm
+++ b/lib/PerlDaemon/RunModules.pm
@@ -1,3 +1,5 @@
+# PerlDaemon (c) 2010, 2011, Dipl.-Inform. (FH) Paul Buetow (http://perldaemon.buetow.org)
+
package PerlDaemon::RunModules;
use Time::HiRes qw(gettimeofday tv_interval);
diff --git a/lib/PerlDaemonModules/ExampleModule.pm b/lib/PerlDaemonModules/ExampleModule.pm
index 58dec1d..1dddc9d 100644
--- a/lib/PerlDaemonModules/ExampleModule.pm
+++ b/lib/PerlDaemonModules/ExampleModule.pm
@@ -1,3 +1,5 @@
+# PerlDaemon (c) 2010, 2011, Dipl.-Inform. (FH) Paul Buetow (http://perldaemon.buetow.org)
+
package PerlDaemonModules::ExampleModule;
sub new ($$$) {