diff options
author | Jeremy Katz <katzj@redhat.com> | 2002-11-13 21:18:36 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2002-11-13 21:18:36 +0000 |
commit | 73fd88ebceb98416e05efa4b4a2418bc01f8fff7 (patch) | |
tree | 63e77b2078a769f034ba27d970c2a730d94f7099 /installclasses | |
parent | c2c73f3ad440e7476bf16538cc704395738868ed (diff) | |
download | anaconda-73fd88ebceb98416e05efa4b4a2418bc01f8fff7.tar.gz anaconda-73fd88ebceb98416e05efa4b4a2418bc01f8fff7.tar.xz anaconda-73fd88ebceb98416e05efa4b4a2418bc01f8fff7.zip |
stupid *mumble mumble* rsync *mumble mumble*. remove the file again :(
Diffstat (limited to 'installclasses')
-rw-r--r-- | installclasses/upgradeclass.py | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/installclasses/upgradeclass.py b/installclasses/upgradeclass.py deleted file mode 100644 index 1aee1a175..000000000 --- a/installclasses/upgradeclass.py +++ /dev/null @@ -1,60 +0,0 @@ -from installclass import BaseInstallClass -from rhpl.translate import N_, _ - -import os -import iutil - -class InstallClass(BaseInstallClass): - name = N_("Upgrade Existing System") - pixmap = "upgrade.png" - sortPriority = 999999 - - parentClass = ( _("Upgrade"), "upgrade.png" ) - - def requiredDisplayMode(self): - return 't' - - def setSteps(self, dispatch): - dispatch.setStepList( - "language", - "keyboard", - "mouse", - "welcome", - "installtype", - "findrootparts", - "findinstall", - "partitionobjinit", - "upgrademount", - "upgradeswapsuggestion", - "addswap", - "upgrademigfind", - "upgrademigratefs", - "upgradecontinue", - "readcomps", - "findpackages", - "upgbootloader", - "checkdeps", - "dependencies", - "confirmupgrade", - "install", - "migratefilesystems", - "preinstallconfig", - "installpackages", - "postinstallconfig", - "instbootloader", - "dopostaction", - "bootdisk", - "complete" - ) - - if iutil.getArch() == "alpha" or iutil.getArch() == "ia64": - dispatch.skipStep("bootdisk") - dispatch.skipStep("bootloader") - dispatch.skipStep("bootloaderadvanced") - - def setInstallData(self, id): - BaseInstallClass.setInstallData(self, id) - id.upgrade.set(1) - - def __init__(self, expert): - BaseInstallClass.__init__(self, expert) |