|
From: | Didier Spaier |
Subject: | Re: [SECURITY PATCH 116/117] templates: Disable the os-prober by default |
Date: | Tue, 2 Mar 2021 22:49:16 +0100 |
User-agent: | Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.12.0 |
Le 02/03/2021 à 19:02, Daniel Kiper a écrit :
From: Alex Burmashev <alexander.burmashev@oracle.com> diff --git a/util/grub.d/30_os-prober.in b/util/grub.d/30_os-prober.in index 1b91c102f..80685b15f 100644 --- a/util/grub.d/30_os-prober.in +++ b/util/grub.d/30_os-prober.in @@ -26,7 +26,8 @@ export TEXTDOMAINDIR="@localedir@". "$pkgdatadir/grub-mkconfig_lib" -if [ "x${GRUB_DISABLE_OS_PROBER}" = "xtrue" ]; then+if [ "x${GRUB_DISABLE_OS_PROBER}" = "xfalse" ]; then + gettext_printf "os-prober will not be executed to detect other bootable partitions.\nSystems on them will not be added to the GRUB boot configuration.\nCheck GRUB_DISABLE_OS_PROBER documentation entry.\n" exit 0 fi
This is confusing: now to get boot entries from os-prober one have to set: GRUB_DISABLE_OS_PROBER=true in /etc/default/grub. Either revert that, or (better, in my opinion) label the variable GRUB_ENABLE_OS_PROBER and set it to false by default. Tested from grub pulled from git master with all patches committed. Best regards, Didier
[Prev in Thread] | Current Thread | [Next in Thread] |