summaryrefslogtreecommitdiffstats
path: root/config-db/slxconfig-demuxer.pl
diff options
context:
space:
mode:
authorOliver Tappe2006-10-03 13:40:53 +0200
committerOliver Tappe2006-10-03 13:40:53 +0200
commit98ecd61f61507ea49828b81e762be02239056ebf (patch)
tree01b40289ddf6ff8469750aa13e47007070503638 /config-db/slxconfig-demuxer.pl
parent* fixed problem with perl-scripts not finding their modules in production path (diff)
downloadcore-98ecd61f61507ea49828b81e762be02239056ebf.tar.gz
core-98ecd61f61507ea49828b81e762be02239056ebf.tar.xz
core-98ecd61f61507ea49828b81e762be02239056ebf.zip
* added OpenSLX-header to all my files.
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@434 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db/slxconfig-demuxer.pl')
-rwxr-xr-xconfig-db/slxconfig-demuxer.pl17
1 files changed, 12 insertions, 5 deletions
diff --git a/config-db/slxconfig-demuxer.pl b/config-db/slxconfig-demuxer.pl
index 74c7fba0..71eb7b7e 100755
--- a/config-db/slxconfig-demuxer.pl
+++ b/config-db/slxconfig-demuxer.pl
@@ -1,6 +1,18 @@
#! /usr/bin/perl
+#
+# slxconfig-demuxer.pl - OpenSLX configuration demultiplexer
+#
+# (c) 2006 - OpenSLX.com
+#
+# Oliver Tappe <ot@openslx.com>
+#
use strict;
+use Fcntl qw(:DEFAULT :flock);
+use File::Basename;
+use Getopt::Long qw(:config pass_through);
+use Pod::Usage;
+
# add the lib-folder and the folder this script lives in to perl's search
# path for modules:
use FindBin;
@@ -9,11 +21,6 @@ use lib "$FindBin::RealBin/../lib";
use lib "$FindBin::RealBin";
# development path
-use Fcntl qw(:DEFAULT :flock);
-use File::Basename;
-use Getopt::Long qw(:config pass_through);
-use Pod::Usage;
-
use OpenSLX::Basics;
use OpenSLX::ConfigDB qw(:access :aggregation :support);