summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSSetup/Engine.pm
diff options
context:
space:
mode:
authorOliver Tappe2007-08-21 19:47:48 +0200
committerOliver Tappe2007-08-21 19:47:48 +0200
commitcbd04b6bf2164ecd65fed3008a70e8c9fdc165fc (patch)
treef58ce55df50d30b07359d1183c6937947d190a57 /installer/OpenSLX/OSSetup/Engine.pm
parent* fixed bug that caused slxos-export to complain about the (diff)
downloadcore-cbd04b6bf2164ecd65fed3008a70e8c9fdc165fc.tar.gz
core-cbd04b6bf2164ecd65fed3008a70e8c9fdc165fc.tar.xz
core-cbd04b6bf2164ecd65fed3008a70e8c9fdc165fc.zip
* fixed problem reported by Dirk that caused debian-3.1
installations to fail during first try (but work when retrying). git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1324 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/OpenSLX/OSSetup/Engine.pm')
-rw-r--r--installer/OpenSLX/OSSetup/Engine.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/installer/OpenSLX/OSSetup/Engine.pm b/installer/OpenSLX/OSSetup/Engine.pm
index 9fff64cf..8424b831 100644
--- a/installer/OpenSLX/OSSetup/Engine.pm
+++ b/installer/OpenSLX/OSSetup/Engine.pm
@@ -1399,9 +1399,9 @@ sub _setupStage1D
$self->_callChrootedFunction({
chrootDir => $self->{'vendor-os-path'},
function => sub {
- $self->{distro}->preSystemInstallationHook();
$self->_stage1D_setupPackageSources();
$self->_stage1D_updateBasicVendorOS();
+ $self->{distro}->preSystemInstallationHook();
$self->_stage1D_installPackageSelection();
$self->{distro}->postSystemInstallationHook();
},