summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSExport/Engine.pm
diff options
context:
space:
mode:
Diffstat (limited to 'installer/OpenSLX/OSExport/Engine.pm')
-rw-r--r--installer/OpenSLX/OSExport/Engine.pm18
1 files changed, 9 insertions, 9 deletions
diff --git a/installer/OpenSLX/OSExport/Engine.pm b/installer/OpenSLX/OSExport/Engine.pm
index 60777f07..251869e0 100644
--- a/installer/OpenSLX/OSExport/Engine.pm
+++ b/installer/OpenSLX/OSExport/Engine.pm
@@ -116,6 +116,14 @@ sub exportVendorOS
{
my $self = shift;
+ vlog(
+ 1,
+ _tr(
+ "vendor-OS from '%s' will be exported to '%s'",
+ $self->{'vendor-os-path'},
+ $self->{'exporter'}->{'export-path'}
+ )
+ );
if (!$self->{'exporter'}->checkRequirements($self->{'vendor-os-path'})) {
die _tr(
"clients wouldn't be able to access the exported root-fs!\nplease "
@@ -237,17 +245,9 @@ sub _initialize
}
$self->{'exporter'} = $exporter;
- # setup source and target paths:
$self->{'vendor-os-path'} =
"$openslxConfig{'private-path'}/stage1/$vendorOSName";
- vlog(
- 1,
- _tr(
- "vendor-OS from '%s' will be exported to '%s'",
- $self->{'vendor-os-path'},
- $exporter->{'export-path'}
- )
- );
+
return;
}