]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
firstboot: fill empty color if ansi_color unavailable from os-release
authorafg <afg984@gmail.com>
Tue, 1 Sep 2020 21:20:25 +0000 (05:20 +0800)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Wed, 2 Sep 2020 06:10:47 +0000 (08:10 +0200)
src/firstboot/firstboot.c

index cf1ec28dd54d23ee0453e499ccf5b031dcfe05c8..e3e1f9e2c8cb3566edd76c5ea07758df7448ae0c 100644 (file)
@@ -93,7 +93,7 @@ static bool press_any_key(void) {
 static void print_welcome(void) {
         _cleanup_free_ char *pretty_name = NULL, *ansi_color = NULL;
         static bool done = false;
-        const char *pn;
+        const char *pn, *ac;
         int r;
 
         if (!arg_welcome)
@@ -112,9 +112,10 @@ static void print_welcome(void) {
                                "Failed to read os-release file, ignoring: %m");
 
         pn = isempty(pretty_name) ? "Linux" : pretty_name;
+        ac = isempty(ansi_color) ? "0" : ansi_color;
 
         if (colors_enabled())
-                printf("\nWelcome to your new installation of \x1B[%sm%s\x1B[0m!\n", ansi_color, pn);
+                printf("\nWelcome to your new installation of \x1B[%sm%s\x1B[0m!\n", ac, pn);
         else
                 printf("\nWelcome to your new installation of %s!\n", pn);