From: Lennart Poettering Date: Fri, 19 Sep 2025 13:55:49 +0000 (+0200) Subject: firstboot: don't talk about any 'new' installation X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=372f3159fd6f34fd657e44b473f159dcc54e7a06;p=thirdparty%2Fsystemd.git 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 --- 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; }