diff options
author | Jeremy Katz <katzj@redhat.com> | 2006-03-04 15:57:34 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2006-03-04 15:57:34 +0000 |
commit | 7fec57695356bbbed00cd37e24bf97d5576f79aa (patch) | |
tree | a027cb0effd189d6235a46a221f9097cd621c507 /yuminstall.py | |
parent | 6e70b372714c9abfb40b4ab17ca426b9d78e8461 (diff) | |
download | anaconda-7fec57695356bbbed00cd37e24bf97d5576f79aa.tar.gz anaconda-7fec57695356bbbed00cd37e24bf97d5576f79aa.tar.xz anaconda-7fec57695356bbbed00cd37e24bf97d5576f79aa.zip |
2006-03-04 Jeremy Katz <katzj@redhat.com>
* backend.py (doPostSelection): Pass direction
* dispatch.py (installSteps): Likewise.
* yuminstall.py (doPostSelection): Likewise.
Diffstat (limited to 'yuminstall.py')
-rw-r--r-- | yuminstall.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yuminstall.py b/yuminstall.py index 93c0c7877..717152471 100644 --- a/yuminstall.py +++ b/yuminstall.py @@ -757,9 +757,9 @@ class YumBackend(AnacondaBackend): for entry in fsset.entries: map(self.selectPackage, entry.fsystem.getNeededPackages()) - def doPostSelection(self, intf, id, instPath): + def doPostSelection(self, intf, id, instPath, dir): # Only solve dependencies on the way through the installer, not the way back. - if intf.dispatch.dir == DISPATCH_BACK: + if dir == DISPATCH_BACK: return # do some sanity checks for kernel and bootloader |