summaryrefslogtreecommitdiffstats
path: root/installclasses
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-07-16 19:53:36 +0000
committerMatt Wilson <msw@redhat.com>2001-07-16 19:53:36 +0000
commit0d73c9341da92dfbe6be05d2f4d4ba5adaeea53c (patch)
tree182840ed425fa924b29875b792c1fb05ae020d02 /installclasses
parentc83979a70e617db41ee23d1bd9fa1b80e3e4e55d (diff)
downloadanaconda-0d73c9341da92dfbe6be05d2f4d4ba5adaeea53c.tar.gz
anaconda-0d73c9341da92dfbe6be05d2f4d4ba5adaeea53c.tar.xz
anaconda-0d73c9341da92dfbe6be05d2f4d4ba5adaeea53c.zip
attempt at fixing upgradeonly class
Diffstat (limited to 'installclasses')
-rw-r--r--installclasses/upgradeonly.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/installclasses/upgradeonly.py b/installclasses/upgradeonly.py
index cf33bec30..c531d500b 100644
--- a/installclasses/upgradeonly.py
+++ b/installclasses/upgradeonly.py
@@ -22,6 +22,9 @@ class InstallClass(BaseInstallClass):
"upgrademigfind",
"upgrademigratefs",
"upgradecontinue",
+ "bootloadersetup",
+ "bootloader",
+ "bootloaderpassword"
"checkdeps",
"dependencies",
"confirmupgrade",
@@ -33,6 +36,10 @@ class InstallClass(BaseInstallClass):
"bootdisk",
"complete"
)
+
+ if iutil.getArch() == "alpha" or iutil.getArch() == "ia64":
+ dispatch.skipStep("bootdisk")
+ dispatch.skipStep("bootloader")
def __init__(self, expert):
BaseInstallClass.__init__(self, expert)