diff options
author | Chris Lumens <clumens@redhat.com> | 2008-06-21 10:31:14 -0400 |
---|---|---|
committer | Chris Lumens <clumens@redhat.com> | 2008-08-21 14:26:27 -0400 |
commit | 0c9847414c110fda5c249dd3736a16ee96d47dd5 (patch) | |
tree | f355df57157ea9329c44989811ffba6918a73183 /yuminstall.py | |
parent | 391d3beff82061da085dee61957138d631ce836f (diff) | |
download | anaconda-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.py | 11 |
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: |