25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

default-grub.j2 1.3KB

7 년 전
12345678910111213141516171819202122232425262728293031323334
  1. {{ ansible_managed | comment }}
  2. # If you change this file, run 'update-grub' afterwards to update
  3. # /boot/grub/grub.cfg.
  4. # For full documentation of the options in this file, see:
  5. # info -f grub -n 'Simple configuration'
  6. GRUB_DEFAULT=0
  7. GRUB_TIMEOUT=5
  8. GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
  9. GRUB_CMDLINE_LINUX_DEFAULT="{{ grub_cmdline_linux_default }}"
  10. GRUB_CMDLINE_LINUX="{{ grub_cmdline_linux }}"
  11. # Uncomment to enable BadRAM filtering, modify to suit your needs
  12. # This works with Linux (no patch required) and with any kernel that obtains
  13. # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
  14. #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
  15. # Uncomment to disable graphical terminal (grub-pc only)
  16. GRUB_TERMINAL="{{ grub_terminal }}"
  17. # The resolution used on graphical terminal
  18. # note that you can use only modes which your graphic card supports via VBE
  19. # you can see them in real GRUB with the command `vbeinfo'
  20. #GRUB_GFXMODE=640x480
  21. # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
  22. #GRUB_DISABLE_LINUX_UUID=true
  23. # Uncomment to disable generation of recovery mode menu entries
  24. GRUB_DISABLE_RECOVERY="{{ grub_disable_recovery }}"
  25. # Uncomment to get a beep at grub start
  26. #GRUB_INIT_TUNE="480 440 1"