diff options
author | Thierry Vignaud <tv@mandriva.org> | 2008-02-21 18:24:30 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mandriva.org> | 2008-02-21 18:24:30 +0000 |
commit | f7ea1aebb30d5eda6f406e14a78a13131a7d120e (patch) | |
tree | b6228f62e9aab9ff7b0363dfcabc0f6220391328 /Rpmdrake | |
parent | 660842368965bc2b8f6e46c63c53149aed1b7c90 (diff) | |
download | rpmdrake-f7ea1aebb30d5eda6f406e14a78a13131a7d120e.tar rpmdrake-f7ea1aebb30d5eda6f406e14a78a13131a7d120e.tar.gz rpmdrake-f7ea1aebb30d5eda6f406e14a78a13131a7d120e.tar.bz2 rpmdrake-f7ea1aebb30d5eda6f406e14a78a13131a7d120e.tar.xz rpmdrake-f7ea1aebb30d5eda6f406e14a78a13131a7d120e.zip |
(add_distrib_update_media,easy_add_callback,mirrors) only ask for 'distrib' style URLs
Diffstat (limited to 'Rpmdrake')
-rw-r--r-- | Rpmdrake/edit_urpm_sources.pm | 3 | ||||
-rw-r--r-- | Rpmdrake/pkg.pm | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/Rpmdrake/edit_urpm_sources.pm b/Rpmdrake/edit_urpm_sources.pm index 9931f817..8fc731c9 100644 --- a/Rpmdrake/edit_urpm_sources.pm +++ b/Rpmdrake/edit_urpm_sources.pm @@ -131,12 +131,11 @@ I need to contact the Mandriva website to get the mirror list. Please check that your network is currently running. Is it ok to continue?", $distro), - want_base_distro => $want_base_distro, transient => $::main_window, ) or return 0; ref $mirror or return; my $wait = wait_msg(N("Please wait, adding media...")); - add_distrib_update_media($urpm, $mirror); + add_distrib_update_media($urpm, $mirror, if_(!$want_base_distro, only_updates => 1)); $offered_to_add_sources->[0] = 1; remove_wait_msg($wait); return 1; diff --git a/Rpmdrake/pkg.pm b/Rpmdrake/pkg.pm index 6a5a4716..b98aadfd 100644 --- a/Rpmdrake/pkg.pm +++ b/Rpmdrake/pkg.pm @@ -287,7 +287,7 @@ launch the Software Media Manager, and then add a `Security updates' medium. Then, restart %s.", $rpmdrake::myname_update)), myexit(-1); - add_distrib_update_media($urpm, $mirror); + add_distrib_update_media($urpm, $mirror, only_updates => 1); } } |