diff options
author | Matt Wilson <msw@redhat.com> | 2001-07-12 21:27:45 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2001-07-12 21:27:45 +0000 |
commit | 329efc10c58d5b369318d02414fbbe346b9029bf (patch) | |
tree | cdfcfa7184f52fe30e22e1c52f25fdcf252c1aac /installclasses | |
parent | db9e94bd06e5cb4138e0e9e62e7b2a03423d6e94 (diff) | |
download | anaconda-329efc10c58d5b369318d02414fbbe346b9029bf.tar.gz anaconda-329efc10c58d5b369318d02414fbbe346b9029bf.tar.xz anaconda-329efc10c58d5b369318d02414fbbe346b9029bf.zip |
take a shot at fixing upgrade only mode, (#48962)
Diffstat (limited to 'installclasses')
-rw-r--r-- | installclasses/upgradeonly.py | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/installclasses/upgradeonly.py b/installclasses/upgradeonly.py index 7eee77a49..cf33bec30 100644 --- a/installclasses/upgradeonly.py +++ b/installclasses/upgradeonly.py @@ -14,15 +14,27 @@ class InstallClass(BaseInstallClass): def setSteps(self, dispatch): dispatch.setStepList( "mouse", - "installtype", + "findinstall", + "partitionobjinit", + "upgrademount", + "upgradeswapsuggestion", "addswap", + "upgrademigfind", + "upgrademigratefs", + "upgradecontinue", + "checkdeps", "dependencies", - "monitor", + "confirmupgrade", "install", + "preinstallconfig", + "installpackages", + "postinstallconfig", + "instbootloader", + "bootdisk", "complete" ) def __init__(self, expert): - BaseInstallClass.__init__(self) + BaseInstallClass.__init__(self, expert) self.installType = "upgrade" |