From ae5ccaa71df4e6c508d49c02f6a78f13d06167c5 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Thu, 9 Aug 2001 16:34:24 +0000 Subject: 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 --- installclasses/server.py | 2 -- installclasses/workstation.py | 2 -- 2 files changed, 4 deletions(-) (limited to 'installclasses') 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) -- cgit