diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-01-24 14:24:41 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-01-24 14:24:41 +0000 |
commit | 277ec70b75355d1e2b0eba613467783f53c0827e (patch) | |
tree | 26e1df918499c0d48081e55ac92c230feda33c10 /perl-install/install_steps_interactive.pm | |
parent | 7da6b7146113385973483c99cce20bfb84c1558b (diff) | |
download | drakx-277ec70b75355d1e2b0eba613467783f53c0827e.tar drakx-277ec70b75355d1e2b0eba613467783f53c0827e.tar.gz drakx-277ec70b75355d1e2b0eba613467783f53c0827e.tar.bz2 drakx-277ec70b75355d1e2b0eba613467783f53c0827e.tar.xz drakx-277ec70b75355d1e2b0eba613467783f53c0827e.zip |
fix "Previous" button in warnAboutNaughtyServers, so there is 3 choices
(Previous, unselect servers, accept :)
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 62432d535..b3f374446 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -386,6 +386,7 @@ sub choosePackages { log::l("max size (level $min_mark) is : " . formatXiB($max_size)); pkgs::restoreSelected($b); + chooseGroups: $o->chooseGroups($packages, $compssUsers, $min_mark, \$individual, $max_size) if !$o->{isUpgrade} && !$::corporate; ($o->{packages_}{ind}) = @@ -394,7 +395,7 @@ sub choosePackages { $o->choosePackagesTree($packages) if $individual; install_any::warnAboutRemovedPackages($o, $o->{packages}); - install_any::warnAboutNaughtyServers($o); + install_any::warnAboutNaughtyServers($o) or goto chooseGroups; } sub choosePackagesTree { |