26 lines
865 B
Plaintext
26 lines
865 B
Plaintext
|
# Write lines to /etc/default/grub (in the target system) based
|
||
|
# on calculated values and the values set in the *defaults* key
|
||
|
# in this configuration file.
|
||
|
#
|
||
|
# Calculated values are:
|
||
|
# - GRUB_DISTRIBUTOR, branding module, *bootloaderEntryName*
|
||
|
# - GRUB_ENABLE_CRYPTODISK, based on the presence of filesystems
|
||
|
# that use LUKS
|
||
|
# - GRUB_CMDLINE_LINUX_DEFAULT, adding LUKS setup and plymouth
|
||
|
# support to the kernel.
|
||
|
|
||
|
---
|
||
|
# If set to true, always creates /etc/default/grub from scratch even if the file
|
||
|
# already existed. If set to false, edits the existing file instead.
|
||
|
overwrite: false
|
||
|
|
||
|
# Default entries to write to /etc/default/grub if it does not exist yet or if
|
||
|
# we are overwriting it.
|
||
|
#
|
||
|
defaults:
|
||
|
GRUB_TIMEOUT: 5
|
||
|
GRUB_DEFAULT: "saved"
|
||
|
GRUB_DISABLE_SUBMENU: true
|
||
|
GRUB_TERMINAL_OUTPUT: "console"
|
||
|
GRUB_DISABLE_RECOVERY: true
|