115e0f6
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
115e0f6
From: Javier Martinez Canillas <javierm@redhat.com>
115e0f6
Date: Thu, 28 Mar 2019 16:34:42 +0100
115e0f6
Subject: [PATCH] 10_linux_bls: don't add --users option to generated menu
115e0f6
 entries
115e0f6
115e0f6
The generated menu entries have a --users $grub_users option but this will
115e0f6
fail on old versions of GRUB, since it expects the --users option argument
115e0f6
to either be a constant or a variable that has been set.
115e0f6
115e0f6
The latest GRUB version fix this but the GRUB core isn't updated on a GRUB
115e0f6
package update, so this will cause the entries to not be shown in the menu
115e0f6
after a system upgrade.
115e0f6
115e0f6
Since can cause issues and because the entries that weren't generated from
115e0f6
the BLS snippets didn't have the --users option either, just don't add it.
115e0f6
115e0f6
Resolves: rhbz#1693515
115e0f6
115e0f6
Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
115e0f6
---
115e0f6
 util/grub.d/10_linux_bls.in | 2 +-
115e0f6
 1 file changed, 1 insertion(+), 1 deletion(-)
115e0f6
115e0f6
diff --git a/util/grub.d/10_linux_bls.in b/util/grub.d/10_linux_bls.in
115e0f6
index 1707e86f2d3..b8ee9916329 100644
115e0f6
--- a/util/grub.d/10_linux_bls.in
115e0f6
+++ b/util/grub.d/10_linux_bls.in
115e0f6
@@ -180,7 +180,7 @@ populate_menu()
115e0f6
     for bls in "${files[@]}" ; do
115e0f6
         read_config "${blsdir}/${bls}.conf"
115e0f6
 
115e0f6
-        menu="${menu}menuentry '${title}' --class ${grub_class} ${grub_arg} --users ${grub_users} --id ${bls} {\n"
115e0f6
+        menu="${menu}menuentry '${title}' --class ${grub_class} ${grub_arg} --id ${bls} {\n"
115e0f6
         menu="${menu}\t linux ${linux} ${options}\n"
115e0f6
         if [ -n "${initrd}" ] ; then
115e0f6
             menu="${menu}\t initrd ${boot_prefix}${initrd}\n"