summaryrefslogtreecommitdiffstats
path: root/installer
diff options
context:
space:
mode:
authorOliver Tappe2007-06-28 21:06:42 +0200
committerOliver Tappe2007-06-28 21:06:42 +0200
commit84b65b25c7cef504961457db210beab6c3324e90 (patch)
tree4336e20675042c8101ffdf2f15e4e35d40270aa8 /installer
parent* reverted removal of leading slash to nfspath (although conceptually, this (diff)
downloadcore-84b65b25c7cef504961457db210beab6c3324e90.tar.gz
core-84b65b25c7cef504961457db210beab6c3324e90.tar.xz
core-84b65b25c7cef504961457db210beab6c3324e90.zip
* fixed double slash in export path (rootfs)
git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1195 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer')
-rw-r--r--installer/OpenSLX/OSExport/FileSystem/NFS.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/OpenSLX/OSExport/FileSystem/NFS.pm b/installer/OpenSLX/OSExport/FileSystem/NFS.pm
index 36926d61..ffeaeffd 100644
--- a/installer/OpenSLX/OSExport/FileSystem/NFS.pm
+++ b/installer/OpenSLX/OSExport/FileSystem/NFS.pm
@@ -81,7 +81,7 @@ sub generateExportURI
$server .= ":$export->{port}" if length($export->{port});
my $exportPath = "$openslxConfig{'public-path'}/export";
- return "nfs://$server/$exportPath/nfs/$vendorOS->{name}";
+ return "nfs://$server$exportPath/nfs/$vendorOS->{name}";
}
sub requiredFSMods