From c7c1edd680eca279cc23ac276e5ef7a3bf24189f Mon Sep 17 00:00:00 2001 From: Antonio Alvarez Feijoo Date: Mon, 26 Jun 2023 16:01:13 +0200 Subject: [PATCH] firstboot: fix typo --- src/firstboot/firstboot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/firstboot/firstboot.c b/src/firstboot/firstboot.c index 65859eaa9fc..29fc61dd67e 100644 --- a/src/firstboot/firstboot.c +++ b/src/firstboot/firstboot.c @@ -742,7 +742,7 @@ static int process_machine_id(int rfd) { r = write_string_file_at(pfd, "machine-id", SD_ID128_TO_STRING(arg_machine_id), WRITE_STRING_FILE_CREATE|WRITE_STRING_FILE_SYNC|WRITE_STRING_FILE_ATOMIC); if (r < 0) - return log_error_errno(r, "Failed to write /etc/machine id: %m"); + return log_error_errno(r, "Failed to write /etc/machine-id: %m"); log_info("/etc/machine-id written."); return 0;