summaryrefslogtreecommitdiffstats
path: root/perl-install/install/steps_interactive.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-11-16 17:33:03 +0000
committerThierry Vignaud <tv@mageia.org>2012-11-16 17:33:03 +0000
commite052c1ff2e8adf6ad0f2ce79b11a1b7d42e5a2ed (patch)
tree2ee8caab20964a28cc1af5d1e3e21ef929e86080 /perl-install/install/steps_interactive.pm
parentc013e0202043e38b175b40e759e93cc1da51f8f5 (diff)
downloaddrakx-e052c1ff2e8adf6ad0f2ce79b11a1b7d42e5a2ed.tar
drakx-e052c1ff2e8adf6ad0f2ce79b11a1b7d42e5a2ed.tar.gz
drakx-e052c1ff2e8adf6ad0f2ce79b11a1b7d42e5a2ed.tar.bz2
drakx-e052c1ff2e8adf6ad0f2ce79b11a1b7d42e5a2ed.tar.xz
drakx-e052c1ff2e8adf6ad0f2ce79b11a1b7d42e5a2ed.zip
(chooseGroups) fix offering "selecting individual packages" when
pressing "previous" after selecting package groups
Diffstat (limited to 'perl-install/install/steps_interactive.pm')
-rw-r--r--perl-install/install/steps_interactive.pm7
1 files changed, 5 insertions, 2 deletions
diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm
index 65962ad33..142b87676 100644
--- a/perl-install/install/steps_interactive.pm
+++ b/perl-install/install/steps_interactive.pm
@@ -584,7 +584,9 @@ sub chooseGroups {
install::any::unselectMostPackages($o) if $unselect_all;
#- if no group have been chosen, ask for using base system only, or no X, or normal.
- offer_minimal_options($o) if !any { $_->{selected} } @$compssUsers;
+ if (!any { $_->{selected} } @$compssUsers) {
+ offer_minimal_options($o) or goto &chooseGroups;
+ }
}
1;
}
@@ -606,7 +608,7 @@ Please choose the minimal installation you want:"),
{ val => \$docs, type => 'bool', text => N("With basic documentation (recommended!)"), disabled => sub { $minimal } },
{ val => \$minimal, type => 'bool', text => N("Truly minimal install (especially no urpmi)") },
],
- ) or return &chooseGroups;
+ ) or return 0;
if ($minimal) {
$o->{rpmsrate_flags_chosen}{CAT_X} = $docs = $suggests = 0;
@@ -619,6 +621,7 @@ Please choose the minimal installation you want:"),
log::l("install settings: no_suggests=$o->{no_suggests}, excludedocs=$o->{excludedocs}, really_minimal_install=$minimal");
install::any::unselectMostPackages($o);
+ 1;
}
sub reallyChooseGroups {