summaryrefslogtreecommitdiffstats
path: root/installclass.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-06-20 07:53:37 +0000
committerJeremy Katz <katzj@redhat.com>2002-06-20 07:53:37 +0000
commit61f7a64a2c62494bace630db7fbd3e402c8593e9 (patch)
treeacb68772186c089e5fdb38b981a17b4404bed6dc /installclass.py
parent16ab230bebcfc193a51f2aee2ae98dbfc071f367 (diff)
downloadanaconda-61f7a64a2c62494bace630db7fbd3e402c8593e9.tar.gz
anaconda-61f7a64a2c62494bace630db7fbd3e402c8593e9.tar.xz
anaconda-61f7a64a2c62494bace630db7fbd3e402c8593e9.zip
advanced bootloader screen shouldn't be on by default
Diffstat (limited to 'installclass.py')
-rw-r--r--installclass.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/installclass.py b/installclass.py
index a4859ac25..02356c833 100644
--- a/installclass.py
+++ b/installclass.py
@@ -93,7 +93,6 @@ class BaseInstallClass:
"partitiondone",
"bootloadersetup",
"bootloader",
- "bootloaderadvanced",
"networkdevicecheck",
"network",
"firewall",
@@ -130,7 +129,6 @@ class BaseInstallClass:
if iutil.getArch() == "alpha" or iutil.getArch() == "ia64":
dispatch.skipStep("bootdisk")
dispatch.skipStep("bootloader")
- dispatch.skipStep("bootloaderadvanced")
dispatch.skipStep("fdasd", permanent = 1)
elif iutil.getArch() == "s390" or iutil.getArch() == "s390x":
#dispatch.skipStep("language")
@@ -456,7 +454,6 @@ class BaseInstallClass:
# we need to be able to differentiate between this and custom
class DefaultInstall(BaseInstallClass):
-
def __init__(self, expert):
BaseInstallClass.__init__(self, expert)