diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-08-04 19:54:43 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-08-04 19:54:43 +0000 |
commit | f6e3748ee91d36114c41784b33d57506deb25c5e (patch) | |
tree | 3830c42bf0f29585c37ea4bd49982c2f6810532b | |
parent | ca8d1a4e929a4b32b535870f260fc9fd8cb264f2 (diff) | |
download | anaconda-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
-rw-r--r-- | installclasses/custom.py | 5 | ||||
-rw-r--r-- | installclasses/server.py | 7 | ||||
-rw-r--r-- | installclasses/workstation.py | 8 |
3 files changed, 0 insertions, 20 deletions
diff --git a/installclasses/custom.py b/installclasses/custom.py index 3e1e32d50..0c79b9fe0 100644 --- a/installclasses/custom.py +++ b/installclasses/custom.py @@ -31,8 +31,3 @@ class InstallClass(BaseInstallClass): def __init__(self, expert): BaseInstallClass.__init__(self, expert) - - if expert: - self.skipLilo = 1 - else: - self.skipLilo = 0 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 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 |