2018-04-11 18:42:03 +00:00
|
|
|
From 205a7844bea4d849dc24f24b5fc96f6040d5e2b9 Mon Sep 17 00:00:00 2001
|
2014-07-02 15:49:28 +00:00
|
|
|
From: Peter Jones <pjones@redhat.com>
|
|
|
|
Date: Tue, 11 Feb 2014 11:14:50 -0500
|
2018-06-19 14:33:22 +00:00
|
|
|
Subject: [PATCH 108/246] Don't require a password to boot entries generated by
|
2014-07-02 15:49:28 +00:00
|
|
|
grub-mkconfig.
|
|
|
|
|
|
|
|
When we set a password, we just want that to mean you can't /edit/ an entry.
|
|
|
|
|
|
|
|
Resolves: rhbz#1030176
|
|
|
|
|
|
|
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
|
|
|
---
|
|
|
|
util/grub.d/10_linux.in | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/util/grub.d/10_linux.in b/util/grub.d/10_linux.in
|
2018-02-27 18:56:41 +00:00
|
|
|
index 452a9f69d28..79a747ebd4d 100644
|
2014-07-02 15:49:28 +00:00
|
|
|
--- a/util/grub.d/10_linux.in
|
|
|
|
+++ b/util/grub.d/10_linux.in
|
|
|
|
@@ -26,7 +26,7 @@ datarootdir="@datarootdir@"
|
|
|
|
export TEXTDOMAIN=@PACKAGE@
|
|
|
|
export TEXTDOMAINDIR="@localedir@"
|
|
|
|
|
|
|
|
-CLASS="--class gnu-linux --class gnu --class os"
|
|
|
|
+CLASS="--class gnu-linux --class gnu --class os --unrestricted"
|
|
|
|
|
|
|
|
if [ "x${GRUB_DISTRIBUTOR}" = "x" ] ; then
|
|
|
|
OS="$(sed 's, release .*$,,g' /etc/system-release)"
|
|
|
|
--
|
2018-06-04 16:28:07 +00:00
|
|
|
2.17.1
|
2014-07-02 15:49:28 +00:00
|
|
|
|