summaryrefslogtreecommitdiffstats
path: root/installclasses/server.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/server.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/server.py')
-rw-r--r--installclasses/server.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/installclasses/server.py b/installclasses/server.py
index f8b1890ec..f341a091a 100644
--- a/installclasses/server.py
+++ b/installclasses/server.py
@@ -13,8 +13,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)
@@ -55,8 +53,3 @@ class InstallClass(BaseInstallClass):
def __init__(self, expert):
BaseInstallClass.__init__(self, expert)
-
- if expert:
- self.skipLilo = 1
- else:
- self.skipLilo = 0