Reputation: 469
When using the priorities plugin for yum, I get shown the number of packages which have been excluded. Is there a way of displaying the names of those packages?
Upvotes: 2
Views: 504
Reputation: 1047
You could always run yum like this:
yum -d 9 install foo
and part of the logging output is excluded packages.
EDIT
Here's the command I use to see only the excluded packages:
yum -d 9 install foo | grep excluded
Just in case you were wondering.
Upvotes: 2
Reputation: 1440
From the docs available via Fedora's site, as well as the CentOS docs that sort of functionality is not supported.
Upvotes: 2