diff options
author | Lennart Poettering <lennart@poettering.net> | 2023-11-22 13:13:03 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2023-11-22 13:27:53 +0100 |
commit | 5fee4ac0f4b2d339300cc692d09e3b904c25b887 (patch) | |
tree | fa6c63ede74424fa6398e4494235c47f46f50818 /src | |
parent | terminal-util: drop ECHOPRT flag from TTY settings when resetting (diff) | |
download | systemd-5fee4ac0f4b2d339300cc692d09e3b904c25b887.tar.xz systemd-5fee4ac0f4b2d339300cc692d09e3b904c25b887.zip |
firstboot: reset terminal settings right before asking a question
We are about to do interactivity on the terminal, hence let's ensure we
are in the TTY mode we expect to be in.
Diffstat (limited to 'src')
-rw-r--r-- | src/firstboot/firstboot.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/firstboot/firstboot.c b/src/firstboot/firstboot.c index 6cf7415a18..f77a5f6266 100644 --- a/src/firstboot/firstboot.c +++ b/src/firstboot/firstboot.c @@ -131,6 +131,8 @@ static void print_welcome(int rfd) { pn = os_release_pretty_name(pretty_name, os_name); ac = isempty(ansi_color) ? "0" : ansi_color; + (void) reset_terminal_fd(STDIN_FILENO, /* switch_to_text= */ false); + if (colors_enabled()) printf("\nWelcome to your new installation of \x1B[%sm%s\x1B[0m!\n", ac, pn); else |