summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@mandriva.com>2009-05-12 09:39:53 +0000
committerChristophe Fergeau <cfergeau@mandriva.com>2009-05-12 09:39:53 +0000
commit8f46ee445ee58a6a551698bb33d9dc0132f44956 (patch)
treed0535abeadbe353a659ddfbba47ceabbb1d7b02d
parentcef4e2bc9de96274155b91359e9829e28b80fb18 (diff)
downloadurpmi-8f46ee445ee58a6a551698bb33d9dc0132f44956.tar
urpmi-8f46ee445ee58a6a551698bb33d9dc0132f44956.tar.gz
urpmi-8f46ee445ee58a6a551698bb33d9dc0132f44956.tar.bz2
urpmi-8f46ee445ee58a6a551698bb33d9dc0132f44956.tar.xz
urpmi-8f46ee445ee58a6a551698bb33d9dc0132f44956.zip
add aria2 to the priority list of packages that need to be updated
before restarting urpmi (should we try to update libcares & libssl too???)
-rw-r--r--NEWS2
-rw-r--r--urpm/select.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 83ad0002..d478b14a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,8 @@
- urpmi
o fix issue with urpmi sometimes using the wrong key when checking
signatures when the same package is available from different media
+ o add aria2 to the priority list of packages that need to be updated
+ before restarting urpmi
- urpmi_rpm-find-leaves
o do not list suggested packages as unrequested packages (#46326)
- urpmq
diff --git a/urpm/select.pm b/urpm/select.pm
index c780b932..6b9a3f79 100644
--- a/urpm/select.pm
+++ b/urpm/select.pm
@@ -7,7 +7,7 @@ use urpm::util;
use urpm::sys;
use URPM;
-my $default_priority_list = 'rpm,perl-URPM,perl-MDV-Distribconf,urpmi,meta-task,glibc';
+my $default_priority_list = 'rpm,perl-URPM,perl-MDV-Distribconf,urpmi,meta-task,glibc,aria2';
my @priority_list = split(',', $default_priority_list);
my $evr_re = qr/[^\-]*-[^\-]*\.[^\.\-]*$/;