summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2007-07-26 14:12:04 +0000
committerDavid Cantrell <dcantrell@redhat.com>2007-07-26 14:12:04 +0000
commitb5b0e34ce8a389eb3c897dd9b0cdeacc044b63b8 (patch)
tree183e8d6f71ef27e366cf293f8878e4e8a3d53744
parent5f2e090932a1617b3fdcb30aa21b6a5050de2f7b (diff)
downloadanaconda-b5b0e34ce8a389eb3c897dd9b0cdeacc044b63b8.tar.gz
anaconda-b5b0e34ce8a389eb3c897dd9b0cdeacc044b63b8.tar.xz
anaconda-b5b0e34ce8a389eb3c897dd9b0cdeacc044b63b8.zip
* yuminstall.py (YumBackend.__init__): Make sure skipFormatRoot is
initialized.
-rw-r--r--ChangeLog5
-rw-r--r--yuminstall.py3
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0be66f4b7..33f2ae044 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-07-26 David Cantrell <dcantrell@redhat.com>
+
+ * yuminstall.py (YumBackend.__init__): Make sure skipFormatRoot is
+ initialized.
+
2007-07-25 David Cantrell <dcantrell@redhat.com>
* installclasses/rhel.py: import yuminstall to avoid traceback.
diff --git a/yuminstall.py b/yuminstall.py
index 1bc09015d..045995a79 100644
--- a/yuminstall.py
+++ b/yuminstall.py
@@ -672,7 +672,8 @@ class AnacondaYum(YumSorter):
class YumBackend(AnacondaBackend):
def __init__ (self, method, instPath):
AnacondaBackend.__init__(self, method, instPath)
- self.supportsPackageSelection = True
+ self.supportsPackageSelection = True
+ self.skipFormatRoot = False
def doInitialSetup(self, anaconda):
if anaconda.id.getUpgrade():