summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSExport/FileSystem/NFS.pm
diff options
context:
space:
mode:
authorOliver Tappe2009-06-09 20:05:47 +0200
committerOliver Tappe2009-06-09 20:05:47 +0200
commit4a683e74a6afd9896df3c32b9d9d334e4599f7d3 (patch)
tree1513b6f3aac3d803f22022401cc470d97d45d796 /installer/OpenSLX/OSExport/FileSystem/NFS.pm
parent* fixed pretty stupid bug that involved mixed use of bufferd/non-buffered IO (diff)
downloadcore-4a683e74a6afd9896df3c32b9d9d334e4599f7d3.tar.gz
core-4a683e74a6afd9896df3c32b9d9d334e4599f7d3.tar.xz
core-4a683e74a6afd9896df3c32b9d9d334e4599f7d3.zip
* fixed a whole lot of circular references which I found when researching #451
* some minor cleanups along the way git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2944 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/OpenSLX/OSExport/FileSystem/NFS.pm')
-rw-r--r--installer/OpenSLX/OSExport/FileSystem/NFS.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/installer/OpenSLX/OSExport/FileSystem/NFS.pm b/installer/OpenSLX/OSExport/FileSystem/NFS.pm
index b9d88689..9bd2ca87 100644
--- a/installer/OpenSLX/OSExport/FileSystem/NFS.pm
+++ b/installer/OpenSLX/OSExport/FileSystem/NFS.pm
@@ -40,7 +40,8 @@ sub initialize
my $self = shift;
my $engine = shift;
- $self->{'engine'} = $engine;
+ $self->SUPER::initialize($engine);
+
my $exportBasePath = "$openslxConfig{'public-path'}/export";
$self->{'export-path'} = "$exportBasePath/nfs/$engine->{'vendor-os-name'}";
return;