mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
GRUB_HIDDEN_TIMEOUT should be a numeric value.
This changes GRUB_HIDDEN_TIMEOUT to 0 from true and sets GRUB_HIDDEN_TIMEOUT_QUIET to true.
This commit is contained in:
parent
52b5846cb5
commit
77cbb64b9f
1 changed files with 2 additions and 1 deletions
|
@ -29,7 +29,8 @@ class ConfigureGrub(Task):
|
|||
sed_i(grub_def, '^GRUB_CMDLINE_LINUX_DEFAULT="quiet"',
|
||||
'GRUB_CMDLINE_LINUX_DEFAULT="console=hvc0"')
|
||||
sed_i(grub_def, '^GRUB_TIMEOUT=[0-9]+', 'GRUB_TIMEOUT=0\n'
|
||||
'GRUB_HIDDEN_TIMEOUT=true')
|
||||
'GRUB_HIDDEN_TIMEOUT=0\n'
|
||||
'GRUB_HIDDEN_TIMEOUT_QUIET=true')
|
||||
sed_i(grub_def, '^#GRUB_DISABLE_RECOVERY="true"', 'GRUB_DISABLE_RECOVERY="true"')
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue