diff options
author | Francois Pons <fpons@mandriva.com> | 2002-01-04 17:34:35 +0000 |
---|---|---|
committer | Francois Pons <fpons@mandriva.com> | 2002-01-04 17:34:35 +0000 |
commit | 883e070b411abc63e7ab89efe88cbc51e320c139 (patch) | |
tree | 803ac0cfd45a815699b4f69f04d79b6a9776f7de /perl-install/install_steps_interactive.pm | |
parent | 6ea016b32d565af4c2be937295792089aeb56d9d (diff) | |
download | drakx-883e070b411abc63e7ab89efe88cbc51e320c139.tar drakx-883e070b411abc63e7ab89efe88cbc51e320c139.tar.gz drakx-883e070b411abc63e7ab89efe88cbc51e320c139.tar.bz2 drakx-883e070b411abc63e7ab89efe88cbc51e320c139.tar.xz drakx-883e070b411abc63e7ab89efe88cbc51e320c139.zip |
allow to use same identifier for security medium (1u).
re-install urpmi.
allow some error to be catched.
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index bd1591d39..fa5e8cd43 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -920,8 +920,10 @@ Do you want to continue ?")) || return; }; if ($update_medium) { - $o->choosePackagesTree($o->{packages}, $update_medium); - $o->pkg_install(); + if ($o->choosePackagesTree($o->{packages}, $update_medium)) { + $o->pkg_install; + $o->install_urpmi; + } } #- stop interface using ppp only. |