summaryrefslogtreecommitdiffstats
path: root/config-db/OpenSLX/ConfigDB.pm
diff options
context:
space:
mode:
authorOliver Tappe2007-05-02 23:34:33 +0200
committerOliver Tappe2007-05-02 23:34:33 +0200
commitaaa042a0cb0ba83d60d6b9479a42665f7b1eab54 (patch)
treedb223d114e20802493ea5a1ec670abc008bca38f /config-db/OpenSLX/ConfigDB.pm
parent* reverted recent addition of --verbose-level to short help, as that is no sc... (diff)
downloadcore-aaa042a0cb0ba83d60d6b9479a42665f7b1eab54.tar.gz
core-aaa042a0cb0ba83d60d6b9479a42665f7b1eab54.tar.xz
core-aaa042a0cb0ba83d60d6b9479a42665f7b1eab54.zip
overhaul the settings concept:
* now all settings live in the settings file, no more settings table in the DB * clearified slxsettings and its options * removed all references to db table 'settings' * added some new extended settings git-svn-id: http://svn.openslx.org/svn/openslx/trunk@988 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db/OpenSLX/ConfigDB.pm')
-rw-r--r--config-db/OpenSLX/ConfigDB.pm16
1 files changed, 0 insertions, 16 deletions
diff --git a/config-db/OpenSLX/ConfigDB.pm b/config-db/OpenSLX/ConfigDB.pm
index 78a13e05..dc3850ba 100644
--- a/config-db/OpenSLX/ConfigDB.pm
+++ b/config-db/OpenSLX/ConfigDB.pm
@@ -364,14 +364,6 @@ sub fetchGroupIDsOfClient
return $self->{'meta-db'}->fetchGroupIDsOfClient($clientID);
}
-sub fetchSettings
-{
- my $self = shift;
-
- my @rows = $self->{'meta-db'}->fetchSettings();
- return shift @rows;
-}
-
################################################################################
### data manipulation interface
################################################################################
@@ -805,14 +797,6 @@ sub emptyDatabase
$self->removeVendorOS(\@vendorOSIDs);
}
-sub changeSettings
-{
- my $self = shift;
- my $settings = shift;
-
- return $self->{'meta-db'}->changeSettings($settings);
-}
-
################################################################################
### data aggregation interface
################################################################################