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
916 B
30 lines
916 B
7 years ago
|
From 59bf229ab8f723b8dac858475c9a3cfc6d71987b Mon Sep 17 00:00:00 2001
|
||
|
From: Marcel Kolaja <mkolaja@redhat.com>
|
||
|
Date: Tue, 21 Jan 2014 10:57:08 -0500
|
||
|
Subject: [PATCH 125/237] Honor a symlink when generating configuration by
|
||
|
grub2-mkconfig
|
||
|
|
||
|
Honor a symlink when generating configuration by grub2-mkconfig, so that
|
||
|
the -o option follows it rather than overwriting it with a regular file.
|
||
|
---
|
||
|
util/grub-mkconfig.in | 3 ++-
|
||
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/util/grub-mkconfig.in b/util/grub-mkconfig.in
|
||
|
index ca040dd..b00f9e6 100644
|
||
|
--- a/util/grub-mkconfig.in
|
||
|
+++ b/util/grub-mkconfig.in
|
||
|
@@ -272,7 +272,8 @@ and /etc/grub.d/* files or please file a bug report with
|
||
|
echo >&2
|
||
|
else
|
||
|
# none of the children aborted with error, install the new grub.cfg
|
||
|
- mv -f ${grub_cfg}.new ${grub_cfg}
|
||
|
+ cat ${grub_cfg}.new > ${grub_cfg}
|
||
|
+ rm -f ${grub_cfg}.new
|
||
|
fi
|
||
|
fi
|
||
|
|
||
|
--
|
||
|
2.9.3
|
||
|
|