I recently used Yum (on Fedora 13) to install xmms2. It found some dependencies and installed those as well. Immediately after I installed xmms2, I performed yum erase xmms2, but it uninstalled only the xmms2 package, and not the packages that were installed along with it to resolve dependencies. I also tried performing package-cleanup --orphans, but it doesn't list those packages. What is happening here? Shouldn't the other packages be uninstalled as well?

link|improve this question

1  
Though this is an old question, it's also worth pointing out that part of the issue here is that yum terminology is a bit different. That's why 'package-cleanup --orphans' didn't work as expected — because an "orphan" isn't what you think. Packages that don't exist as dependencies (aren't required by any other installed package) are called leaves in yum. An "orphaned" package is one that's installed on the system, but not available in any configured repository. So, any rpm installed by hand, from a disabled repo, or that's been removed from its source repo since it was installed. – FeRD Jul 6 '11 at 12:23
feedback

2 Answers

up vote 2 down vote accepted

It's a design decision that was made long, long ago. install yum-plugin-remove-with-leaves if they irk you so.

link|improve this answer
feedback

In yum-3.2.28-13 it does remove orphaned packages with clean_requirements_on_remove=1 under [main] in /etc/yum.conf. According to this link: Testing yum’s autoremove orphaned deps feature.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.