summaryrefslogtreecommitdiff
path: root/roles/installer/debian/iso/templates/grub.cfg.j2
blob: 31ec5d8b985ac55d1ca3cd2599dcd27947266109 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
if loadfont $prefix/font.pf2 ; then
  set gfxmode=800x600
  set gfxpayload=keep
  insmod efi_gop
  insmod efi_uga
  insmod video_bochs
  insmod video_cirrus
  insmod gfxterm
  terminal_output gfxterm
fi

set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
set timeout=10
set default=0

menuentry "automated installer for {{ install_hostname }}" {
	linux	/linux --- auto {{ (hostvars[install_hostname].install_cooked.kernel_cmdline | default([])) | join(' ') }}
	initrd	/initrd.gz
}