diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-08-09 16:34:24 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-08-09 16:34:24 +0000 |
commit | ae5ccaa71df4e6c508d49c02f6a78f13d06167c5 (patch) | |
tree | 19351c6167d6562fd701e458c47f110771942acc /installclasses | |
parent | f768479a06e6d8375bfe4b7e79d5511fe5cff907 (diff) | |
download | anaconda-ae5ccaa71df4e6c508d49c02f6a78f13d06167c5.tar.gz anaconda-ae5ccaa71df4e6c508d49c02f6a78f13d06167c5.tar.xz anaconda-ae5ccaa71df4e6c508d49c02f6a78f13d06167c5.zip |
no, don't add bootdisk to the steplist for workstation and server; it's
already in the base class and we really don't want it on ia64
Diffstat (limited to 'installclasses')
-rw-r--r-- | installclasses/server.py | 2 | ||||
-rw-r--r-- | installclasses/workstation.py | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/installclasses/server.py b/installclasses/server.py index 0a24f94a7..6aae2f97b 100644 --- a/installclasses/server.py +++ b/installclasses/server.py @@ -12,9 +12,7 @@ class InstallClass(BaseInstallClass): def setSteps(self, dispatch): BaseInstallClass.setSteps(self, dispatch); - dispatch.skipStep("authentication") - dispatch.skipStep("bootdisk", skip = 0) def setGroupSelection(self, comps): BaseInstallClass.__init__(self, comps) diff --git a/installclasses/workstation.py b/installclasses/workstation.py index 00e800e53..76fcb5977 100644 --- a/installclasses/workstation.py +++ b/installclasses/workstation.py @@ -13,9 +13,7 @@ class InstallClass(BaseInstallClass): def setSteps(self, dispatch): BaseInstallClass.setSteps(self, dispatch); - dispatch.skipStep("authentication") - dispatch.skipStep("bootdisk", skip = 0) def setGroupSelection(self, comps): BaseInstallClass.__init__(self, comps) |