summaryrefslogtreecommitdiffstats
path: root/installer/OpenSLX/OSSetup/Distro/SUSE.pm
diff options
context:
space:
mode:
authorOliver Tappe2007-08-03 21:57:52 +0200
committerOliver Tappe2007-08-03 21:57:52 +0200
commit061c50264ce019265fef3933d53a42a923847bd8 (patch)
tree843c80919efacf953ed751bcf4185c5e213acb3c /installer/OpenSLX/OSSetup/Distro/SUSE.pm
parentStarted on the cdboot/init and fixed a setting in mkdxsinitrd. (diff)
downloadcore-061c50264ce019265fef3933d53a42a923847bd8.tar.gz
core-061c50264ce019265fef3933d53a42a923847bd8.tar.xz
core-061c50264ce019265fef3933d53a42a923847bd8.zip
* finished support for installation of Debian & Ubuntu. Things seem to be
working more or less fine now. Some systems I have tested do not boot into the graphical environment automatically, but that may be a problem in stage3 (as manually invoking gdm works). git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1313 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'installer/OpenSLX/OSSetup/Distro/SUSE.pm')
-rw-r--r--installer/OpenSLX/OSSetup/Distro/SUSE.pm8
1 files changed, 7 insertions, 1 deletions
diff --git a/installer/OpenSLX/OSSetup/Distro/SUSE.pm b/installer/OpenSLX/OSSetup/Distro/SUSE.pm
index 00cd4bc4..2ea20fc3 100644
--- a/installer/OpenSLX/OSSetup/Distro/SUSE.pm
+++ b/installer/OpenSLX/OSSetup/Distro/SUSE.pm
@@ -38,7 +38,13 @@ sub initialize
$self->SUPER::initialize($engine);
$self->{'packager-type'} = 'rpm';
$self->{'meta-packager-type'} = $ENV{SLX_META_PACKAGER} || 'smart';
- $ENV{YAST_IS_RUNNING} = "instsys";
+
+ if ($engine->{'action-type'} eq 'install') {
+ # Inform SUSE RPMs that we're performing an installation - this is
+ # only important for installations taking place in stage 1c:
+ $ENV{YAST_IS_RUNNING} = "instsys";
+ }
+
return;
}