summaryrefslogtreecommitdiffstats
path: root/iw/examine_gui.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2001-07-23 19:21:14 +0000
committerJeremy Katz <katzj@redhat.com>2001-07-23 19:21:14 +0000
commit8b395c1e3d5ebd2bf49e238c670c1f51681232c4 (patch)
tree18341835f0eed93120ae95caaf4b4d6181cea407 /iw/examine_gui.py
parent5f45d0c5f3dcfde1d94a912681409116a01d62d7 (diff)
downloadanaconda-8b395c1e3d5ebd2bf49e238c670c1f51681232c4.tar.gz
anaconda-8b395c1e3d5ebd2bf49e238c670c1f51681232c4.tar.xz
anaconda-8b395c1e3d5ebd2bf49e238c670c1f51681232c4.zip
new step: find root parts, remove those bits from the interfaces for
findinstall, hook up kickstart upgrade, mounting the root for an upgrade will mount the first in the list (which if you've gone through the interface is the only one, but if kickstart, upgrades the first install found)
Diffstat (limited to 'iw/examine_gui.py')
-rw-r--r--iw/examine_gui.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/iw/examine_gui.py b/iw/examine_gui.py
index 727673585..4e88761e5 100644
--- a/iw/examine_gui.py
+++ b/iw/examine_gui.py
@@ -16,7 +16,7 @@ class UpgradeExamineWindow (InstallWindow):
self.root = newPart
def getNext (self):
- self.id.upgradeRoot = self.root
+ self.id.upgradeRoot = [self.root]
if self.individualPackages.get_active():
self.dispatch.skipStep("indivpackage", skip = 0)
else:
@@ -30,9 +30,9 @@ class UpgradeExamineWindow (InstallWindow):
self.intf = intf
self.id = id
self.chroot = chroot
-
- self.parts = findExistingRoots(intf, id, chroot)
+ self.parts = self.id.upgradeRoot
+
box = GtkVBox (FALSE)
if not self.parts:
box.pack_start (GtkLabel (_("You don't have any Linux partitions."