summaryrefslogtreecommitdiffstats
path: root/config-db
diff options
context:
space:
mode:
authorOliver Tappe2007-04-08 14:54:16 +0200
committerOliver Tappe2007-04-08 14:54:16 +0200
commita0b673e1c0fc3993bcbd90cbfe5e9e6bf4ecab01 (patch)
tree97340120c0dc07ab2f7ca38c01d41263667421e0 /config-db
parent* in order to be consistent with other scripts, 'remove' is now a real action... (diff)
downloadcore-a0b673e1c0fc3993bcbd90cbfe5e9e6bf4ecab01.tar.gz
core-a0b673e1c0fc3993bcbd90cbfe5e9e6bf4ecab01.tar.xz
core-a0b673e1c0fc3993bcbd90cbfe5e9e6bf4ecab01.zip
* removed 'use_absolute_tftp' from settings table
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@873 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db')
-rw-r--r--config-db/OpenSLX/DBSchema.pm3
-rwxr-xr-xconfig-db/slxconfig-demuxer4
2 files changed, 0 insertions, 7 deletions
diff --git a/config-db/OpenSLX/DBSchema.pm b/config-db/OpenSLX/DBSchema.pm
index f5288813..e630d42f 100644
--- a/config-db/OpenSLX/DBSchema.pm
+++ b/config-db/OpenSLX/DBSchema.pm
@@ -159,9 +159,6 @@ $DbSchema = {
],
'settings' => [
# system-wide settings
- 'use_absolute_tftp:b',
- # whether or not the TFTP-server requires the
- # use of absolute path names
'default_nicmods:s.256',
# list of default network modules
],
diff --git a/config-db/slxconfig-demuxer b/config-db/slxconfig-demuxer
index d1c2c11b..13d395c8 100755
--- a/config-db/slxconfig-demuxer
+++ b/config-db/slxconfig-demuxer
@@ -324,10 +324,6 @@ sub generateInitalRamFS
# ...set date initrd has been generated...
my ($d, $m, $y) = (localtime)[3,4,5]; $m++; $y+=1900;
$slxConf{'slxconf_date'} = sprintf('%04d-%02d-%02d', $y, $m, $d);
- $slxConf{'slxconf_tftp_prefix'}
- = $settings->{'use_absolute_tftp'}
- ? "$ENV{SLX_TFTPBOOT_PATH}/"
- : "";
# ...set kernel version...
my $kernelFile = readlink($setup->{'kernel-file'});
$kernelFile =~ m[-(.+)$];