From a33f6acea66267b5f1db65a588b67cb0468c5258 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 12 Feb 2008 15:10:31 +0000 Subject: - 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 eg: kdebase-konsole doesn't get installed with a 2GB "/" (where "available size corrected" is 1.3GB) --- perl-install/install/steps_interactive.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'perl-install/install/steps_interactive.pm') 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) -- cgit v1.2.1