Add GRUB configuration to Ansible role

This commit is contained in:
2021-06-29 17:48:55 -04:00
committed by Joshua Boniface
parent 120871ee45
commit 3d47b12b76
5 changed files with 34 additions and 1 deletions

View File

@ -0,0 +1,9 @@
# GRUB configuration
# {{ ansible_managed }}
GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX="{{ grub_cmdline }}"
GRUB_TERMINAL_INPUT="console serial"
GRUB_TERMINAL_OUTPUT="gfxterm serial"
GRUB_SERIAL_COMMAND="{{ grub_serial }}"