summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorOliver Tappe2007-07-31 23:38:03 +0200
committerOliver Tappe2007-07-31 23:38:03 +0200
commit880ba4090cd8af757f17604af3284afab6fd198c (patch)
tree4d37ef92b0cefc2ab1149d875b78fe0cf05dcd9e /lib
parent* Fixed another bug reported by Bastian: (diff)
downloadcore-880ba4090cd8af757f17604af3284afab6fd198c.tar.gz
core-880ba4090cd8af757f17604af3284afab6fd198c.tar.xz
core-880ba4090cd8af757f17604af3284afab6fd198c.zip
* dropped support for CSV databases, as they are simply not good enough
* added support for db-user and db-passwd: + the mysql backend will now ask for the password upon connect + you can specify the db-user and db-passwd via slxsettings (so you never have to enter it manually afterwards) * slxsettings now checks db-type against an explicit pattern to avoid problems caused by typos git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1295 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'lib')
-rw-r--r--lib/OpenSLX/Basics.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/OpenSLX/Basics.pm b/lib/OpenSLX/Basics.pm
index 93f671bf..53103cef 100644
--- a/lib/OpenSLX/Basics.pm
+++ b/lib/OpenSLX/Basics.pm
@@ -83,9 +83,11 @@ my $translations;
# extended settings follow, which are only supported by slxsettings,
# but not by any other script:
#
- 'ossetup-max-try-count' => '5',
+ 'db-user' => undef,
+ 'db-passwd' => undef,
'default-shell' => 'bash',
'default-timezone' => 'Europe/Berlin',
+ 'ossetup-max-try-count' => '5',
);
chomp($openslxConfig{'locale-charmap'});