diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-07-31 21:20:14 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-07-31 21:20:14 +0000 |
commit | 241c8de8c417fc511e6aec90f10444f5a89cf99d (patch) | |
tree | 5c5ed8527ea28b37015675e934ba969b6a2a3260 | |
parent | 624a145fd0f3a9cebe6c77fd1c00765a2562c8c8 (diff) | |
download | anaconda-241c8de8c417fc511e6aec90f10444f5a89cf99d.tar.gz anaconda-241c8de8c417fc511e6aec90f10444f5a89cf99d.tar.xz anaconda-241c8de8c417fc511e6aec90f10444f5a89cf99d.zip |
change default timeout to be 10 secs for grub (50217)
-rw-r--r-- | bootloader.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootloader.py b/bootloader.py index 0036d5c48..720ce4b68 100644 --- a/bootloader.py +++ b/bootloader.py @@ -408,7 +408,7 @@ class x86BootloaderInfo(bootloaderInfo): bootDev = bootDev.device.getDevice(asBoot = 1) f.write('default=0\n') - f.write('timeout=30\n') + f.write('timeout=10\n') f.write('splashimage=%s%sgrub/splash.xpm.gz\n' % (grubbyPartitionName(bootDev), cfPath)) |