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.
26 lines
1020 B
26 lines
1020 B
6 months ago
|
From 47a9030cad80a684b9affcc2c35ef264e7a8b145 Mon Sep 17 00:00:00 2001
|
||
|
From: Daan De Meyer <daan.j.demeyer@gmail.com>
|
||
|
Date: Thu, 9 Feb 2023 10:44:35 +0100
|
||
|
Subject: [PATCH] bootctl: Add missing %m
|
||
|
|
||
|
(cherry picked from commit 3b42ffe590c5728af50feb138890a44264c4b02e)
|
||
|
|
||
|
Related: RHEL-16354
|
||
|
---
|
||
|
src/boot/bootctl.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/src/boot/bootctl.c b/src/boot/bootctl.c
|
||
|
index 3044f67b5a..a0ca2afec2 100644
|
||
|
--- a/src/boot/bootctl.c
|
||
|
+++ b/src/boot/bootctl.c
|
||
|
@@ -1420,7 +1420,7 @@ static int install_entry_token(void) {
|
||
|
|
||
|
r = write_string_file("/etc/kernel/entry-token", arg_entry_token, WRITE_STRING_FILE_CREATE|WRITE_STRING_FILE_ATOMIC|WRITE_STRING_FILE_MKDIR_0755);
|
||
|
if (r < 0)
|
||
|
- return log_error_errno(r, "Failed to write entry token '%s' to /etc/kernel/entry-token", arg_entry_token);
|
||
|
+ return log_error_errno(r, "Failed to write entry token '%s' to /etc/kernel/entry-token: %m", arg_entry_token);
|
||
|
|
||
|
return 0;
|
||
|
}
|