summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSSetup/Engine.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/OSSetup/Engine.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/OSSetup/Engine.pm')
-rw-r--r--installer/OpenSLX/OSSetup/Engine.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/installer/OpenSLX/OSSetup/Engine.pm b/installer/OpenSLX/OSSetup/Engine.pm
index 74a5ed7e..6a2697d2 100644
--- a/installer/OpenSLX/OSSetup/Engine.pm
+++ b/installer/OpenSLX/OSSetup/Engine.pm
@@ -411,7 +411,6 @@ sub startChrootedShellForVendorOS
}
);
- $self->_touchVendorOS();
vlog(
0,
_tr(
@@ -419,6 +418,8 @@ sub startChrootedShellForVendorOS
$self->{'vendor-os-name'}
)
);
+ $self->_touchVendorOS();
+
return;
}
@@ -457,7 +458,6 @@ sub callChrootedFunctionForVendorOS
}
);
- $self->_touchVendorOS();
vlog(
1,
_tr(
@@ -465,6 +465,8 @@ sub callChrootedFunctionForVendorOS
$self->{'vendor-os-name'}
)
);
+ $self->_touchVendorOS();
+
return 1;
}