Use yum's built in exclude handling
This commit is contained in:
parent
e2c43c0a93
commit
938113eebe
2 changed files with 5 additions and 3 deletions
|
|
@ -1,3 +1,6 @@
|
|||
* Thu Mar 15 2007 Jesse Keating <jkeating@redhat.com>
|
||||
- Use yum's built in exclude handling
|
||||
|
||||
* Tue Mar 14 2007 Jesse Keating <jkeating@redhat.com>
|
||||
- Do things faster/smarter if we've only asked for one disc
|
||||
|
||||
|
|
|
|||
|
|
@ -218,9 +218,8 @@ class Gather(yum.YumBase):
|
|||
searchlist.extend(addlist)
|
||||
|
||||
# Remove the excludes
|
||||
for exclude in excludelist:
|
||||
for x in range(searchlist.count(exclude)): # why is there no list.removeall?
|
||||
searchlist.remove(exclude)
|
||||
self.conf.exclude.extend(excludelist)
|
||||
self.excludePackages()
|
||||
|
||||
# Make the search list unique
|
||||
searchlist = yum.misc.unique(searchlist)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue