diff options
author | David Cantrell <dcantrell@redhat.com> | 2007-07-26 14:12:04 +0000 |
---|---|---|
committer | David Cantrell <dcantrell@redhat.com> | 2007-07-26 14:12:04 +0000 |
commit | b5b0e34ce8a389eb3c897dd9b0cdeacc044b63b8 (patch) | |
tree | 183e8d6f71ef27e366cf293f8878e4e8a3d53744 | |
parent | 5f2e090932a1617b3fdcb30aa21b6a5050de2f7b (diff) | |
download | anaconda-b5b0e34ce8a389eb3c897dd9b0cdeacc044b63b8.tar.gz anaconda-b5b0e34ce8a389eb3c897dd9b0cdeacc044b63b8.tar.xz anaconda-b5b0e34ce8a389eb3c897dd9b0cdeacc044b63b8.zip |
* yuminstall.py (YumBackend.__init__): Make sure skipFormatRoot is
initialized.
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | yuminstall.py | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -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(): |