summaryrefslogtreecommitdiffstats
path: root/installclasses/workstation.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2001-08-04 19:54:43 +0000
committerJeremy Katz <katzj@redhat.com>2001-08-04 19:54:43 +0000
commitf6e3748ee91d36114c41784b33d57506deb25c5e (patch)
tree3830c42bf0f29585c37ea4bd49982c2f6810532b /installclasses/workstation.py
parentca8d1a4e929a4b32b535870f260fc9fd8cb264f2 (diff)
downloadanaconda-f6e3748ee91d36114c41784b33d57506deb25c5e.tar.gz
anaconda-f6e3748ee91d36114c41784b33d57506deb25c5e.tar.xz
anaconda-f6e3748ee91d36114c41784b33d57506deb25c5e.zip
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
Diffstat (limited to 'installclasses/workstation.py')
-rw-r--r--installclasses/workstation.py8
1 files changed, 0 insertions, 8 deletions
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