summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSExport/Engine.pm
diff options
context:
space:
mode:
authorOliver Tappe2008-08-31 19:18:44 +0200
committerOliver Tappe2008-08-31 19:18:44 +0200
commit17c2790c1f442ee277f02b2462def8fc70eab3a7 (patch)
tree37f017c864c26c498b59756f883b494246e725a8 /installer/OpenSLX/OSExport/Engine.pm
parent* write client config only to boot environment that matches the client, not t... (diff)
downloadcore-17c2790c1f442ee277f02b2462def8fc70eab3a7.tar.gz
core-17c2790c1f442ee277f02b2462def8fc70eab3a7.tar.xz
core-17c2790c1f442ee277f02b2462def8fc70eab3a7.zip
* some cleanup regarding log output
git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2162 95ad53e4-c205-0410-b2fa-d234c58c8868
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;
}