From f6e3748ee91d36114c41784b33d57506deb25c5e Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Sat, 4 Aug 2001 19:54:43 +0000 Subject: expert mode was causing the bootloader screen to be skipped which led to 49218 and 50791. thanks to a guy at dclug for actually reproducing this one and testing the fix --- installclasses/workstation.py | 8 -------- 1 file changed, 8 deletions(-) (limited to 'installclasses/workstation.py') diff --git a/installclasses/workstation.py b/installclasses/workstation.py index e06ea21bb..00e800e53 100644 --- a/installclasses/workstation.py +++ b/installclasses/workstation.py @@ -14,9 +14,6 @@ class InstallClass(BaseInstallClass): def setSteps(self, dispatch): BaseInstallClass.setSteps(self, dispatch); - if self.skipLilo: - dispatch.skipStep("bootloader") - dispatch.skipStep("authentication") dispatch.skipStep("bootdisk", skip = 0) @@ -45,8 +42,3 @@ class InstallClass(BaseInstallClass): def __init__(self, expert): BaseInstallClass.__init__(self, expert) - - if expert: - self.skipLilo = 1 - else: - self.skipLilo = 0 -- cgit