summaryrefslogtreecommitdiffstats
path: root/config-db
diff options
context:
space:
mode:
Diffstat (limited to 'config-db')
-rw-r--r--config-db/OpenSLX/ConfigDB.pm10
-rw-r--r--config-db/OpenSLX/DBSchema.pm13
-rw-r--r--config-db/OpenSLX/Export/DHCP/ISC.pm13
-rw-r--r--config-db/OpenSLX/MetaDB/Base.pm13
-rw-r--r--config-db/OpenSLX/MetaDB/CSV.pm13
-rw-r--r--config-db/OpenSLX/MetaDB/DBI.pm13
-rw-r--r--config-db/OpenSLX/MetaDB/SQLite.pm13
-rw-r--r--config-db/OpenSLX/MetaDB/mysql.pm13
-rwxr-xr-xconfig-db/slxconfig12
-rwxr-xr-xconfig-db/slxconfig-demuxer15
-rwxr-xr-xconfig-db/slxsettings15
11 files changed, 107 insertions, 36 deletions
diff --git a/config-db/OpenSLX/ConfigDB.pm b/config-db/OpenSLX/ConfigDB.pm
index b7744b1f..6077b765 100644
--- a/config-db/OpenSLX/ConfigDB.pm
+++ b/config-db/OpenSLX/ConfigDB.pm
@@ -1,9 +1,13 @@
-# ConfigDB.pm - provides full API of the OpenSLX config-db.
+# Copyright (c) 2006, 2007 - OpenSLX GmbH
#
-# (c) 2006 - OpenSLX.com
+# This program is free software distributed under the GPL version 2.
+# See http://openslx.org/COPYING
#
-# Oliver Tappe <ot@openslx.com>
+# If you have any feedback please consult http://openslx.org/feedback and
+# send your suggestions, praise, or complaints to feedback@openslx.org
#
+# General information about OpenSLX can be found at http://openslx.org/
+# -----------------------------------------------------------------------------
package OpenSLX::ConfigDB;
use strict;
diff --git a/config-db/OpenSLX/DBSchema.pm b/config-db/OpenSLX/DBSchema.pm
index 2910a3c1..f5288813 100644
--- a/config-db/OpenSLX/DBSchema.pm
+++ b/config-db/OpenSLX/DBSchema.pm
@@ -1,9 +1,16 @@
-# DBSchema.pm - provides database schema of the OpenSLX config-db.
+# Copyright (c) 2006, 2007 - OpenSLX GmbH
#
-# (c) 2006 - OpenSLX.com
+# This program is free software distributed under the GPL version 2.
+# See http://openslx.org/COPYING
#
-# Oliver Tappe <ot@openslx.com>
+# If you have any feedback please consult http://openslx.org/feedback and
+# send your suggestions, praise, or complaints to feedback@openslx.org
#
+# General information about OpenSLX can be found at http://openslx.org/
+# -----------------------------------------------------------------------------
+# DBSchema.pm
+# - provides database schema of the OpenSLX config-db.
+# -----------------------------------------------------------------------------
package OpenSLX::DBSchema;
use strict;
diff --git a/config-db/OpenSLX/Export/DHCP/ISC.pm b/config-db/OpenSLX/Export/DHCP/ISC.pm
index 18cc1fe7..fcc24b16 100644
--- a/config-db/OpenSLX/Export/DHCP/ISC.pm
+++ b/config-db/OpenSLX/Export/DHCP/ISC.pm
@@ -1,9 +1,16 @@
-# ISC.pm - provides ISC-specific implementation of DHCP export.
+# Copyright (c) 2006, 2007 - OpenSLX GmbH
#
-# (c) 2006 - OpenSLX.com
+# This program is free software distributed under the GPL version 2.
+# See http://openslx.org/COPYING
#
-# Oliver Tappe <ot@openslx.com>
+# If you have any feedback please consult http://openslx.org/feedback and
+# send your suggestions, praise, or complaints to feedback@openslx.org
#
+# General information about OpenSLX can be found at http://openslx.org/
+# -----------------------------------------------------------------------------
+# ISC.pm
+# - provides ISC-specific implementation of DHCP export.
+# -----------------------------------------------------------------------------
package OpenSLX::Export::DHCP::ISC;
use vars qw(@ISA $VERSION);
diff --git a/config-db/OpenSLX/MetaDB/Base.pm b/config-db/OpenSLX/MetaDB/Base.pm
index 41d35d9f..2d6f0374 100644
--- a/config-db/OpenSLX/MetaDB/Base.pm
+++ b/config-db/OpenSLX/MetaDB/Base.pm
@@ -1,9 +1,16 @@
-# Base.pm - provides empty base of the OpenSLX MetaDB API.
+# Copyright (c) 2006, 2007 - OpenSLX GmbH
#
-# (c) 2006 - OpenSLX.com
+# This program is free software distributed under the GPL version 2.
+# See http://openslx.org/COPYING
#
-# Oliver Tappe <ot@openslx.com>
+# If you have any feedback please consult http://openslx.org/feedback and
+# send your suggestions, praise, or complaints to feedback@openslx.org
#
+# General information about OpenSLX can be found at http://openslx.org/
+# -----------------------------------------------------------------------------
+# Base.pm
+# - provides empty base of the OpenSLX MetaDB API.
+# -----------------------------------------------------------------------------
package OpenSLX::MetaDB::Base;
use strict;
diff --git a/config-db/OpenSLX/MetaDB/CSV.pm b/config-db/OpenSLX/MetaDB/CSV.pm
index 55da0beb..80e9f6d5 100644
--- a/config-db/OpenSLX/MetaDB/CSV.pm
+++ b/config-db/OpenSLX/MetaDB/CSV.pm
@@ -1,9 +1,16 @@
-# CSV.pm - provides CSV-specific overrides of the OpenSLX MetaDB API.
+# Copyright (c) 2006, 2007 - OpenSLX GmbH
#
-# (c) 2006 - OpenSLX.com
+# This program is free software distributed under the GPL version 2.
+# See http://openslx.org/COPYING
#
-# Oliver Tappe <ot@openslx.com>
+# If you have any feedback please consult http://openslx.org/feedback and
+# send your suggestions, praise, or complaints to feedback@openslx.org
#
+# General information about OpenSLX can be found at http://openslx.org/
+# -----------------------------------------------------------------------------
+# CSV.pm
+# - provides CSV-specific overrides of the OpenSLX MetaDB API.
+# -----------------------------------------------------------------------------
package OpenSLX::MetaDB::CSV;
use vars qw(@ISA $VERSION);
diff --git a/config-db/OpenSLX/MetaDB/DBI.pm b/config-db/OpenSLX/MetaDB/DBI.pm
index 4479ed84..19e97c54 100644
--- a/config-db/OpenSLX/MetaDB/DBI.pm
+++ b/config-db/OpenSLX/MetaDB/DBI.pm
@@ -1,9 +1,16 @@
-# DBI.pm - provides DBI-based implementation of the OpenSLX MetaDB API.
+# Copyright (c) 2006, 2007 - OpenSLX GmbH
#
-# (c) 2006 - OpenSLX.com
+# This program is free software distributed under the GPL version 2.
+# See http://openslx.org/COPYING
#
-# Oliver Tappe <ot@openslx.com>
+# If you have any feedback please consult http://openslx.org/feedback and
+# send your suggestions, praise, or complaints to feedback@openslx.org
#
+# General information about OpenSLX can be found at http://openslx.org/
+# -----------------------------------------------------------------------------
+# DBI.pm
+# - provides DBI-based implementation of the OpenSLX MetaDB API.
+# -----------------------------------------------------------------------------
package OpenSLX::MetaDB::DBI;
use strict;
diff --git a/config-db/OpenSLX/MetaDB/SQLite.pm b/config-db/OpenSLX/MetaDB/SQLite.pm
index d7d0a2b6..76aafd14 100644
--- a/config-db/OpenSLX/MetaDB/SQLite.pm
+++ b/config-db/OpenSLX/MetaDB/SQLite.pm
@@ -1,9 +1,16 @@
-# SQLite.pm - provides SQLite-specific overrides of the OpenSLX MetaDB API.
+# Copyright (c) 2006, 2007 - OpenSLX GmbH
#
-# (c) 2006 - OpenSLX.com
+# This program is free software distributed under the GPL version 2.
+# See http://openslx.org/COPYING
#
-# Oliver Tappe <ot@openslx.com>
+# If you have any feedback please consult http://openslx.org/feedback and
+# send your suggestions, praise, or complaints to feedback@openslx.org
#
+# General information about OpenSLX can be found at http://openslx.org/
+# -----------------------------------------------------------------------------
+# SQLite.pm
+# - provides SQLite-specific overrides of the OpenSLX MetaDB API.
+# -----------------------------------------------------------------------------
package OpenSLX::MetaDB::SQLite;
use vars qw(@ISA $VERSION);
diff --git a/config-db/OpenSLX/MetaDB/mysql.pm b/config-db/OpenSLX/MetaDB/mysql.pm
index 1e0d01c3..fee9758d 100644
--- a/config-db/OpenSLX/MetaDB/mysql.pm
+++ b/config-db/OpenSLX/MetaDB/mysql.pm
@@ -1,9 +1,16 @@
-# mysql.pm - provides mysql-specific overrides of the OpenSLX MetaDB API.
+# Copyright (c) 2006, 2007 - OpenSLX GmbH
#
-# (c) 2006 - OpenSLX.com
+# This program is free software distributed under the GPL version 2.
+# See http://openslx.org/COPYING
#
-# Oliver Tappe <ot@openslx.com>
+# If you have any feedback please consult http://openslx.org/feedback and
+# send your suggestions, praise, or complaints to feedback@openslx.org
#
+# General information about OpenSLX can be found at http://openslx.org/
+# -----------------------------------------------------------------------------
+# mysql.pm
+# - provides mysql-specific overrides of the OpenSLX MetaDB API.
+# -----------------------------------------------------------------------------
package OpenSLX::MetaDB::mysql;
use vars qw(@ISA $VERSION);
diff --git a/config-db/slxconfig b/config-db/slxconfig
index dae5a95a..447f6758 100755
--- a/config-db/slxconfig
+++ b/config-db/slxconfig
@@ -1,11 +1,15 @@
#! /usr/bin/perl
+# -----------------------------------------------------------------------------
+# Copyright (c) 2006, 2007 - OpenSLX GmbH
#
-# slxconfig -
+# This program is free software distributed under the GPL version 2.
+# See http://openslx.org/COPYING
#
-# (c) 2006 - OpenSLX.com
-#
-# Oliver Tappe <ot@openslx.com>
+# If you have any feedback please consult http://openslx.org/feedback and
+# send your suggestions, praise, or complaints to feedback@openslx.org
#
+# General information about OpenSLX can be found at http://openslx.org/
+# -----------------------------------------------------------------------------
use strict;
my $abstract = q[
diff --git a/config-db/slxconfig-demuxer b/config-db/slxconfig-demuxer
index 97d7af2f..38e2a6d2 100755
--- a/config-db/slxconfig-demuxer
+++ b/config-db/slxconfig-demuxer
@@ -1,11 +1,18 @@
#! /usr/bin/perl
+# -----------------------------------------------------------------------------
+# Copyright (c) 2006, 2007 - OpenSLX GmbH
#
-# slxconfig-demuxer - OpenSLX configuration demultiplexer
+# This program is free software distributed under the GPL version 2.
+# See http://openslx.org/COPYING
#
-# (c) 2006 - OpenSLX.com
-#
-# Oliver Tappe <ot@openslx.com>
+# If you have any feedback please consult http://openslx.org/feedback and
+# send your suggestions, praise, or complaints to feedback@openslx.org
#
+# General information about OpenSLX can be found at http://openslx.org/
+# -----------------------------------------------------------------------------
+# slxconfig-demuxer
+# - OpenSLX configuration demultiplexer
+# -----------------------------------------------------------------------------
use strict;
my $abstract = q[
diff --git a/config-db/slxsettings b/config-db/slxsettings
index c6a5817a..0189123e 100755
--- a/config-db/slxsettings
+++ b/config-db/slxsettings
@@ -1,11 +1,18 @@
#! /usr/bin/perl
+# -----------------------------------------------------------------------------
+# Copyright (c) 2006, 2007 - OpenSLX GmbH
#
-# slxsettings - OpenSLX-script to show & change local settings
+# This program is free software distributed under the GPL version 2.
+# See http://openslx.org/COPYING
#
-# (c) 2006 - OpenSLX.com
-#
-# Oliver Tappe <ot@openslx.com>
+# If you have any feedback please consult http://openslx.org/feedback and
+# send your suggestions, praise, or complaints to feedback@openslx.org
#
+# General information about OpenSLX can be found at http://openslx.org/
+# -----------------------------------------------------------------------------
+# slxsettings
+# - OpenSLX-script to show & change local settings
+# -----------------------------------------------------------------------------
use strict;
my $abstract = q[