summaryrefslogtreecommitdiffstats
path: root/yuminstall.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-06-21 10:31:14 -0400
committerChris Lumens <clumens@redhat.com>2008-08-21 14:26:27 -0400
commit0c9847414c110fda5c249dd3736a16ee96d47dd5 (patch)
treef355df57157ea9329c44989811ffba6918a73183 /yuminstall.py
parent391d3beff82061da085dee61957138d631ce836f (diff)
downloadanaconda-0c9847414c110fda5c249dd3736a16ee96d47dd5.tar.gz
anaconda-0c9847414c110fda5c249dd3736a16ee96d47dd5.tar.xz
anaconda-0c9847414c110fda5c249dd3736a16ee96d47dd5.zip
Get rid of the upgrade blacklist since we can use a yum plugin for that.
Diffstat (limited to 'yuminstall.py')
-rw-r--r--yuminstall.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/yuminstall.py b/yuminstall.py
index 1467e3c1e..a3f09d582 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -1357,17 +1357,6 @@ reposdir=/etc/anaconda.repos.d,/tmp/updates/anaconda.repos.d,/tmp/product/anacon
self.selectAnacondaNeeds()
if anaconda.id.getUpgrade():
- from upgrade import upgrade_remove_blacklist
- for pkg in upgrade_remove_blacklist:
- pkgarch = None
- pkgnames = None
- if len(pkg) == 1:
- pkgname = pkg[0]
- elif len(pkg) == 2:
- pkgname, pkgarch = pkg
- if pkgname is None:
- continue
- self.ayum.remove(name=pkgname, arch=pkgarch)
self.ayum.update()
try: