anaconda: set default grub theme

This commit is contained in:
Marek Marczykowski-Górecki 2014-04-08 05:48:19 +02:00
parent 2700907e19
commit 3e9ec61613

View File

@ -1352,7 +1352,7 @@ class GRUB2(GRUB):
defaults_file = "/etc/default/grub" defaults_file = "/etc/default/grub"
can_dual_boot = True can_dual_boot = True
can_update = True can_update = True
terminal_type = "console" terminal_type = "gfxterm"
# requirements for boot devices # requirements for boot devices
stage2_device_types = ["partition", "mdarray"] stage2_device_types = ["partition", "mdarray"]
@ -1456,7 +1456,7 @@ class GRUB2(GRUB):
defaults.write("GRUB_CMDLINE_LINUX=\"%s\"\n" % self.boot_args) defaults.write("GRUB_CMDLINE_LINUX=\"%s\"\n" % self.boot_args)
defaults.write("GRUB_CMDLINE_XEN_DEFAULT=\"console=none\"\n") defaults.write("GRUB_CMDLINE_XEN_DEFAULT=\"console=none\"\n")
defaults.write("GRUB_DISABLE_RECOVERY=\"true\"\n") defaults.write("GRUB_DISABLE_RECOVERY=\"true\"\n")
#defaults.write("GRUB_THEME=\"/boot/grub2/themes/system/theme.txt\"\n") defaults.write("GRUB_THEME=\"/boot/grub2/themes/system/theme.txt\"\n")
defaults.close() defaults.close()
def _encrypt_password(self): def _encrypt_password(self):