summaryrefslogtreecommitdiffstats
path: root/textw/bootloader_text.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2001-07-18 23:02:53 +0000
committerJeremy Katz <katzj@redhat.com>2001-07-18 23:02:53 +0000
commit4e9f6e4163fb7be9469271cb36e001044eedd3e4 (patch)
tree1b88950ae2430a13b65cf78c80523382d2b8c46e /textw/bootloader_text.py
parenta02bd7c3a19ba338162bc5941911099aede7e691 (diff)
downloadanaconda-4e9f6e4163fb7be9469271cb36e001044eedd3e4.tar.gz
anaconda-4e9f6e4163fb7be9469271cb36e001044eedd3e4.tar.xz
anaconda-4e9f6e4163fb7be9469271cb36e001044eedd3e4.zip
skip bootloader password if no bootloader is being installed
Diffstat (limited to 'textw/bootloader_text.py')
-rw-r--r--textw/bootloader_text.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/textw/bootloader_text.py b/textw/bootloader_text.py
index cf9fddf77..12706453e 100644
--- a/textw/bootloader_text.py
+++ b/textw/bootloader_text.py
@@ -76,12 +76,14 @@ class BootloaderChoiceWindow:
[ (_("Yes"), "yes"), (_("No"), "no") ],
width = 50)
dispatch.skipStep("instbootloader", skip = (rc == "yes"))
+ dispatch.skipStep("bootloaderpassword")
elif blradio.getSelection() == "lilo":
bl.setUseGrub(0)
dispatch.skipStep("instbootloader", 0)
else:
bl.setUseGrub(1)
- dispatch.skipStep("instbootloader", 0)
+ dispatch.skipStep("instbootloader", 0)
+ dispatch.skipStep("bootloaderpassword", 0)
return INSTALL_OK