summaryrefslogtreecommitdiffstats
path: root/config-db/OpenSLX/DBSchema.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/DBSchema.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/DBSchema.pm')
-rw-r--r--config-db/OpenSLX/DBSchema.pm16
1 files changed, 0 insertions, 16 deletions
diff --git a/config-db/OpenSLX/DBSchema.pm b/config-db/OpenSLX/DBSchema.pm
index e1e6750b..a9424031 100644
--- a/config-db/OpenSLX/DBSchema.pm
+++ b/config-db/OpenSLX/DBSchema.pm
@@ -158,11 +158,6 @@ $DbSchema = {
'group_id:fk', # foreign key
'system_id:fk', # foreign key
],
- 'settings' => [
- # system-wide settings
- 'default_nicmods:s.256',
- # list of default network modules
- ],
},
};
@@ -262,17 +257,6 @@ $DbSchema = {
'table' => 'group_system_ref',
'cols' => $DbSchema->{'tables'}->{'group_system_ref'},
},
- {
- 'cmd' => 'add-table',
- 'table' => 'settings',
- 'cols' => $DbSchema->{'tables'}->{'settings'},
- 'vals' => [
- { # add default configuration
- 'default_nicmods'
- => 'forcedeth e1000 e100 tg3 via-rhine r8169 pcnet32',
- },
- ],
- },
],
);