summaryrefslogtreecommitdiffstats
path: root/yuminstall.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-01-18 21:10:48 +0000
committerJeremy Katz <katzj@redhat.com>2007-01-18 21:10:48 +0000
commitaa19a2f26808bcc2dff2e5bb8fae741970901b54 (patch)
treeb6b3a0ff48fefc29a35f211ed0797c95d9fb5acd /yuminstall.py
parentb36e3fe23d9fad61c8b4240b765218b8230acace (diff)
downloadanaconda-aa19a2f26808bcc2dff2e5bb8fae741970901b54.tar.gz
anaconda-aa19a2f26808bcc2dff2e5bb8fae741970901b54.tar.xz
anaconda-aa19a2f26808bcc2dff2e5bb8fae741970901b54.zip
* yuminstall.py (YumBackend.__init__): We actually do want to be
able to do package selection with the yum backend.
Diffstat (limited to 'yuminstall.py')
-rw-r--r--yuminstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/yuminstall.py b/yuminstall.py
index fc5c5487d..5cb5ec894 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -743,7 +743,7 @@ class YumBackend(AnacondaBackend):
def __init__ (self, method, instPath):
AnacondaBackend.__init__(self, method, instPath)
self.prevmedia = None
- self.supportsPackageSelection = False
+ self.supportsPackageSelection = True
def _handleFailure(self, url, intf):
(scheme, netloc, path, query, fragment) = urlparse.urlsplit(url)