You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
978 B
30 lines
978 B
From ac5b2bc87a6c361fd504898a368f0867ef3e2679 Mon Sep 17 00:00:00 2001 |
|
From: Andrew Lukoshko <alukoshko@almalinux.org> |
|
Date: Wed, 31 Jul 2024 16:06:10 +0000 |
|
Subject: [PATCH] grub2-mkconfig: Simplify os_name detection |
|
|
|
--- |
|
util/grub-mkconfig.in | 7 +------ |
|
1 file changed, 1 insertion(+), 6 deletions(-) |
|
|
|
diff --git a/util/grub-mkconfig.in b/util/grub-mkconfig.in |
|
index 7a0738b..ebf5150 100644 |
|
--- a/util/grub-mkconfig.in |
|
+++ b/util/grub-mkconfig.in |
|
@@ -114,12 +114,7 @@ do |
|
esac |
|
done |
|
|
|
-os_name=$(grep '^ID=' /etc/os-release | sed 's/ID=//') |
|
-if test "$os_name" = '"rhel"'; then |
|
- os_name=redhat |
|
-elif test "$os_name" = '"centos"'; then |
|
- os_name=centos |
|
-fi |
|
+os_name=$(grep ^ID= /etc/os-release | sed -e 's/^ID=//' -e 's/rhel/redhat/' -e 's/\"//g') |
|
if test "x${grub_cfg}" = "x/boot/efi/EFI/$os_name/grub.cfg" &&\ |
|
mountpoint -q /boot/efi; then |
|
gettext_printf "Running \`grub2-mkconfig -o %s' will overwrite the GRUB wrapper.\n" "$grub_cfg" 1>&2 |
|
-- |
|
2.43.5 |
|
|
|
|