diff options
author | Mike Fulbright <msf@redhat.com> | 2001-03-08 17:14:41 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-03-08 17:14:41 +0000 |
commit | efe2832e7efc7a4fc075d11e3b95d79b81ef92a4 (patch) | |
tree | 180d11902fa6a05daf9059b8dce9fb6b223b19f2 /todo.py | |
parent | f55277a49bdf4dfa3fe7e6df246549a3412780e5 (diff) | |
download | anaconda-efe2832e7efc7a4fc075d11e3b95d79b81ef92a4.tar.gz anaconda-efe2832e7efc7a4fc075d11e3b95d79b81ef92a4.tar.xz anaconda-efe2832e7efc7a4fc075d11e3b95d79b81ef92a4.zip |
tweak LILO fail message
Diffstat (limited to 'todo.py')
-rw-r--r-- | todo.py | 15 |
1 files changed, 13 insertions, 2 deletions
@@ -1986,11 +1986,22 @@ class ToDo: if errors: w.pop() - mess = _("The following error occured while installing " - "the bootloader:\n\n") + errors + mess = _("An error occured while installing " + "the bootloader.\n\n" + "We HIGHLY recommend you make a recovery " + "boot floppy when prompted, otherwise you " + "may not be able to reboot into Red Hat Linux." + "\n\nThe error reported was:\n\n") + errors self.intf.messageWindow(_("Bootloader Errors"), mess) + + # make sure bootdisk window appears + if iutil.getArch () == "i386": + self.instClass.removeFromSkipList('bootdisk') + self.bootdisk = 1 + w = apply(apply, createWindow) + w.set(5) # go ahead and depmod modules as modprobe in rc.sysinit |