diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-25 12:23:40 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-05-25 12:38:03 -0400 |
commit | d6a67e5ff7d99af484a9ebf68d3fe2510bffd099 (patch) | |
tree | d4aab1b8a37e48ee446efa2db2604070c3128280 /src/firstboot/firstboot.c | |
parent | 64713f35b5a75b441ab300813ff5a48b0bffed92 (diff) |
FSDG: os-release: Default to PRETTY_NAME "GNU/Linux" instead of "Linux".
Diffstat (limited to 'src/firstboot/firstboot.c')
-rw-r--r-- | src/firstboot/firstboot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/firstboot/firstboot.c b/src/firstboot/firstboot.c index 7790ab865d..8e57a24a70 100644 --- a/src/firstboot/firstboot.c +++ b/src/firstboot/firstboot.c @@ -96,7 +96,7 @@ static void print_welcome(void) { log_warning_errno(r, "Failed to read os-release file: %m"); printf("\nWelcome to your new installation of %s!\nPlease configure a few basic system settings:\n\n", - isempty(pretty_name) ? "Linux" : pretty_name); + isempty(pretty_name) ? "GNU/Linux" : pretty_name); press_any_key(); |