diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-07-23 19:23:09 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-07-23 19:23:09 +0000 |
commit | c97cdb90207d48d026e533329490ad1029415cad (patch) | |
tree | 91bb76d54eaa2f584024f9fe058e036295f7da6c /upgrade.py | |
parent | 8b395c1e3d5ebd2bf49e238c670c1f51681232c4 (diff) | |
download | anaconda-c97cdb90207d48d026e533329490ad1029415cad.tar.gz anaconda-c97cdb90207d48d026e533329490ad1029415cad.tar.xz anaconda-c97cdb90207d48d026e533329490ad1029415cad.zip |
and fix going backwards through finding the root parts
Diffstat (limited to 'upgrade.py')
-rw-r--r-- | upgrade.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/upgrade.py b/upgrade.py index 0c4a79b19..fe1c6f05a 100644 --- a/upgrade.py +++ b/upgrade.py @@ -26,8 +26,11 @@ from fsset import * from partitioning import * from log import log from translate import _ +from constants import * -def findRootParts(intf, id, chroot): +def findRootParts(intf, id, dir, chroot): + if dir == DISPATCH_BACK: + return parts = findExistingRoots(intf, id, chroot) id.upgradeRoot = parts |