summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSSetup/Engine.pm
diff options
context:
space:
mode:
authorOliver Tappe2007-07-30 00:23:55 +0200
committerOliver Tappe2007-07-30 00:23:55 +0200
commit803f61ccd2fce4b16f0dd8fb8394883fa58dfcdc (patch)
treeaa527636f83be3122a5573c1b9a45a935e426d97 /installer/OpenSLX/OSSetup/Engine.pm
parent* finished installation support for Debian-etch, Debian-sarge and Ubuntu (diff)
downloadcore-803f61ccd2fce4b16f0dd8fb8394883fa58dfcdc.tar.gz
core-803f61ccd2fce4b16f0dd8fb8394883fa58dfcdc.tar.xz
core-803f61ccd2fce4b16f0dd8fb8394883fa58dfcdc.zip
* more work towards Debian & Ubuntu support, Debian-4.0, Ubuntu-6.10
& Ubuntu-7.04 seem to be working ok, now. Only Debian-3.1 refuses to install any kernel, tsk! git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1283 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/OpenSLX/OSSetup/Engine.pm')
-rw-r--r--installer/OpenSLX/OSSetup/Engine.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/installer/OpenSLX/OSSetup/Engine.pm b/installer/OpenSLX/OSSetup/Engine.pm
index 3876b672..0e43443c 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,install'
+ module => 'Debian_3_1', support => 'clone'
},
'debian-4.0' => {
module => 'Debian_4_0', support => 'clone,install'
@@ -79,10 +79,10 @@ use vars qw(%supportedDistros);
module => 'Ubuntu_6_06', support => 'clone'
},
'ubuntu-6.10' => {
- module => 'Ubuntu_6_10', support => 'clone'
+ module => 'Ubuntu_6_10', support => 'clone,install'
},
'ubuntu-7.04' => {
- module => 'Ubuntu_7_04', support => 'clone'
+ module => 'Ubuntu_7_04', support => 'clone,install'
},
);
@@ -1189,7 +1189,7 @@ sub _startChrootedShellInStage1D
chrootDir => $self->{'vendor-os-path'},
function => sub {
# will hang until user exits manually:
- slxsystem('sh');
+ slxsystem($openslxConfig{'default-shell'});
},
updateConfig => 1,
});