summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSSetup/Engine.pm
diff options
context:
space:
mode:
Diffstat (limited to 'installer/OpenSLX/OSSetup/Engine.pm')
-rw-r--r--installer/OpenSLX/OSSetup/Engine.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/installer/OpenSLX/OSSetup/Engine.pm b/installer/OpenSLX/OSSetup/Engine.pm
index 2a6d4e35..6a3324de 100644
--- a/installer/OpenSLX/OSSetup/Engine.pm
+++ b/installer/OpenSLX/OSSetup/Engine.pm
@@ -34,7 +34,7 @@ use vars qw(%supportedDistros);
%supportedDistros = (
'debian-3.1' => {
- module => 'Debian_3_1', support => 'clone'
+ module => 'Debian_3_1', support => 'clone,install'
},
'debian-4.0' => {
module => 'Debian_4_0', support => 'clone,install'
@@ -1153,9 +1153,11 @@ sub _setupStage1D
$self->_callChrootedFunction({
chrootDir => $self->{'vendor-os-path'},
function => sub {
+ $self->{distro}->preSystemInstallationHook();
$self->_stage1D_setupPackageSources();
$self->_stage1D_updateBasicVendorOS();
$self->_stage1D_installPackageSelection();
+ $self->{distro}->postSystemInstallationHook();
},
updateConfig => 1,
});