From 1fbdf298cc182c97735f81af17c9bea86dd7442e Mon Sep 17 00:00:00 2001 From: Martin Whitaker Date: Mon, 17 Dec 2018 16:05:58 +0000 Subject: Remove/fix misleading comment and log messages, fix indentation. --- perl-install/install/any.pm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'perl-install/install/any.pm') diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index 005e29205..277feac2a 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -809,13 +809,12 @@ sub rpmsrate_always_flags { sub default_bootloader() { my $p; - # we only support grub2-efi on UEFI: if (is_uefi()) { - log::l("selecting grub2-efi because it's needed for UEFI boot"); - $p = 'grub2-efi'; + log::l("defaulting to grub2-efi"); + $p = 'grub2-efi'; } else { - log::l("defaulting to grub"); - $p = 'grub2'; + log::l("defaulting to grub2"); + $p = 'grub2'; } [ $p ]; } -- cgit v1.2.1