From 372f3159fd6f34fd657e44b473f159dcc54e7a06 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 19 Sep 2025 15:55:49 +0200 Subject: [PATCH] firstboot: don't talk about any 'new' installation The firstboot interface might pop-up also during live mode (because it's just very useful to have the right kbd mapping applied), and that's hardly a "new installation". Hence use more generic terms --- src/firstboot/firstboot.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/firstboot/firstboot.c b/src/firstboot/firstboot.c index 9f237dc266b..4c24d38716d 100644 --- a/src/firstboot/firstboot.c +++ b/src/firstboot/firstboot.c @@ -139,16 +139,16 @@ static void print_welcome(int rfd, sd_varlink **mute_console_link) { ac = isempty(ansi_color) ? "0" : ansi_color; if (colors_enabled()) - printf(ANSI_HIGHLIGHT "Welcome to your new installation of " ANSI_NORMAL "\x1B[%sm%s" ANSI_HIGHLIGHT "!" ANSI_NORMAL "\n", ac, pn); + printf(ANSI_HIGHLIGHT "Welcome to " ANSI_NORMAL "\x1B[%sm%s" ANSI_HIGHLIGHT "!" ANSI_NORMAL "\n", ac, pn); else - printf("Welcome to your new installation of %s!\n", pn); + printf("Welcome to %s!\n", pn); putchar('\n'); if (emoji_enabled()) { fputs(glyph(GLYPH_SPARKLES), stdout); putchar(' '); } - printf("Please configure your new system!\n\n"); + printf("Please configure the system!\n\n"); done = true; } -- 2.47.3