summaryrefslogtreecommitdiffstats
path: root/installclasses
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-08-23 16:30:22 +0000
committerMatt Wilson <msw@redhat.com>2001-08-23 16:30:22 +0000
commit9b9e467cc135a05034a1518de95fa3c643b5eb88 (patch)
treec69ab057389f22567d5a3e59671a19aadc7e9a5a /installclasses
parentd14d78b83ec5e0df5265debf52fbfecdc2df5001 (diff)
downloadanaconda-9b9e467cc135a05034a1518de95fa3c643b5eb88.tar.gz
anaconda-9b9e467cc135a05034a1518de95fa3c643b5eb88.tar.xz
anaconda-9b9e467cc135a05034a1518de95fa3c643b5eb88.zip
set the upgrade flag, doh.
Diffstat (limited to 'installclasses')
-rw-r--r--installclasses/upgradeonly.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/installclasses/upgradeonly.py b/installclasses/upgradeonly.py
index 111347242..e5f0e0564 100644
--- a/installclasses/upgradeonly.py
+++ b/installclasses/upgradeonly.py
@@ -46,6 +46,10 @@ class InstallClass(BaseInstallClass):
dispatch.skipStep("bootdisk")
dispatch.skipStep("bootloader")
dispatch.skipStep("bootloaderpassword")
+
+ def setInstallData(self, id):
+ BaseInstallClass.__init__(self, id)
+ id.upgrade.set(1)
def __init__(self, expert):
BaseInstallClass.__init__(self, expert)