summaryrefslogtreecommitdiffstats
path: root/config-db/slxconfig-demuxer.pl
diff options
context:
space:
mode:
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);