summaryrefslogtreecommitdiffstats
path: root/config-db
diff options
context:
space:
mode:
authorOliver Tappe2006-10-01 21:55:31 +0200
committerOliver Tappe2006-10-01 21:55:31 +0200
commite318317e7d051b354230c22fccc0c47dd1d34de0 (patch)
treee54721b146d82fd48b0e0527596121225b330c5e /config-db
parentSuggestion how to pass SLX_CONFIG_PATH info (via slxmkramfs, (diff)
downloadcore-e318317e7d051b354230c22fccc0c47dd1d34de0.tar.gz
core-e318317e7d051b354230c22fccc0c47dd1d34de0.tar.xz
core-e318317e7d051b354230c22fccc0c47dd1d34de0.zip
* removed --use-absolute-tftp-path again, as this functionality is now implemented
elsewhere git-svn-id: http://svn.openslx.org/svn/openslx/trunk@420 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'config-db')
-rwxr-xr-xconfig-db/slxconfig-demuxer.pl11
1 files changed, 0 insertions, 11 deletions
diff --git a/config-db/slxconfig-demuxer.pl b/config-db/slxconfig-demuxer.pl
index 8e610f70..2c469ded 100755
--- a/config-db/slxconfig-demuxer.pl
+++ b/config-db/slxconfig-demuxer.pl
@@ -26,8 +26,6 @@ MENU MASTER PASSWD secret
my (
$dryRun,
# dryRun won't touch any file
- $useAbsoluteTftpPath,
- # pass tftpboot-path on to clients (for a tftpd serving from "/")
$systemConfCount,
# number of system configurations written
$clientSystemConfCount,
@@ -38,10 +36,6 @@ GetOptions(
'dry-run' => \$dryRun,
# dry-run doesn't write anything, just prints statistic about what
# would have been written
- 'use-absolute-tftp-path' => \$useAbsoluteTftpPath,
- # this causes the absolute tftp-path to be prepended to all places
- # that require it such that the system can cooperate with a tftp-server
- # which does not serve from $SLX_TFTPBOOT_PATH (but from / instead).
);
openslxInit();
@@ -213,11 +207,6 @@ sub writePXEMenus
$append .= " initrd=$extSysID/initramfs";
$append .= " $clientAppend";
$append .= " rootfs=$info->{'export-uri'} file";
- if ($useAbsoluteTftpPath) {
- # tftp-server requires absolute paths, so we pass that on to
- # the clients:
- $append .= " tftp_root_path=$tftpbootPath";
- }
print PXE "LABEL openslx-$extSysID\n";
# print PXE "\tMENU DEFAULT\n";
print PXE "\tMENU LABEL ^$info->{label}\n";