summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/install/NEWS2
-rw-r--r--perl-install/install/steps_interactive.pm3
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 112686b20..7f7b9f589 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,5 @@
+- do not propose "KDE, GNOME or Custom" profiles if the partition is small
+ (< 2.5GB) otherwise the installer will not be able to install the full profile
- auto partitioning: ensure the "/" is bigger on small drives
Version 10.6.18 - 12 February 2008
diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm
index f0c8347f6..9bdd47883 100644
--- a/perl-install/install/steps_interactive.pm
+++ b/perl-install/install/steps_interactive.pm
@@ -367,7 +367,8 @@ sub choosePackages {
if (!$o->{isUpgrade}) {
if (install::pkgs::packageByName($o->{packages}, 'task-kde') &&
- install::pkgs::packageByName($o->{packages}, 'task-gnome-minimal')) {
+ install::pkgs::packageByName($o->{packages}, 'task-gnome-minimal') &&
+ $availableC >= 2_500_000_000) { # don't chooseDesktop if not enough place
_chooseDesktop($o, $o->{rpmsrate_flags_chosen}, \$chooseGroups);
} else {
# don't ask for desktop if kde and gnome are not available on media (useful for mini iso)