]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
bootctl: downgrade graceful messages to LOG_NOTICE
authorLennart Poettering <lennart@poettering.net>
Tue, 20 Dec 2022 15:34:36 +0000 (16:34 +0100)
committerLennart Poettering <lennart@poettering.net>
Wed, 4 Jan 2023 14:18:10 +0000 (15:18 +0100)
src/boot/bootctl-random-seed.c
units/systemd-boot-random-seed.service [moved from units/systemd-boot-system-token.service with 100% similarity]

index 1f33b5b71be7b89ca4625d4271b9d9b391d00beb..de1dec19e58db640e8a0ed7ec6475a23410e8356 100644 (file)
@@ -152,9 +152,9 @@ int install_random_seed(const char *esp) {
                                 return log_error_errno(r, "Failed to write 'LoaderSystemToken' EFI variable: %m");
 
                         if (r == -EINVAL)
-                                log_warning_errno(r, "Unable to write 'LoaderSystemToken' EFI variable (firmware problem?), ignoring: %m");
+                                log_notice_errno(r, "Unable to write 'LoaderSystemToken' EFI variable (firmware problem?), ignoring: %m");
                         else
-                                log_warning_errno(r, "Unable to write 'LoaderSystemToken' EFI variable, ignoring: %m");
+                                log_notice_errno(r, "Unable to write 'LoaderSystemToken' EFI variable, ignoring: %m");
                 } else
                         log_info("Successfully initialized system token in EFI variable with %zu bytes.", sizeof(buffer));
         }