]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
firstboot: don't talk about any 'new' installation 39137/head
authorLennart Poettering <lennart@poettering.net>
Fri, 19 Sep 2025 13:55:49 +0000 (15:55 +0200)
committerLennart Poettering <lennart@poettering.net>
Fri, 26 Sep 2025 14:40:14 +0000 (16:40 +0200)
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

index 9f237dc266b3ef944aef9ee808818841a61826b7..4c24d38716d97e7ffe7957eee86ed52ab83522e1 100644 (file)
@@ -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;
 }