From: Lennart Poettering Date: Tue, 20 Dec 2022 15:34:36 +0000 (+0100) Subject: bootctl: downgrade graceful messages to LOG_NOTICE X-Git-Tag: v253-rc1~193^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5019b0cb15d788e5e1f3c15eb7cdca6ee18a847c;p=thirdparty%2Fsystemd.git bootctl: downgrade graceful messages to LOG_NOTICE --- diff --git a/src/boot/bootctl-random-seed.c b/src/boot/bootctl-random-seed.c index 1f33b5b71be..de1dec19e58 100644 --- a/src/boot/bootctl-random-seed.c +++ b/src/boot/bootctl-random-seed.c @@ -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)); } diff --git a/units/systemd-boot-system-token.service b/units/systemd-boot-random-seed.service similarity index 100% rename from units/systemd-boot-system-token.service rename to units/systemd-boot-random-seed.service