summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index 7f2ca6a2f..fb1ee8c07 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -536,7 +536,7 @@ sub chooseGroups {
};
while (1) {
- if ($available_size < 140) {
+ if ($available_size < 200) {
# too small to choose anything. Defaulting to no group chosen
$_->{selected} = 0 foreach @$compssUsers;
last;
@@ -544,7 +544,7 @@ sub chooseGroups {
$o->reallyChooseGroups($size_to_display, $individual, $compssUsers) or return;
- last if $::testing || pkgs::correctSize($size / sqr(1024)) < $available_size;
+ last if $::testing || pkgs::correctSize($size / sqr(1024)) < $available_size || every { !$_->{selected} } @$compssUsers;
$o->ask_warn('', N("Selected size is larger than available space"));
}