diff options
author | Michael Ferrari <nekkodroid404@gmail.com> | 2024-09-16 19:54:53 +0200 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2024-09-17 20:21:11 +0200 |
commit | 91ea3dcf35e4e3fdfe360069819517436c3ae3c7 (patch) | |
tree | 301ee052cd10fed175fa45ba48e251b6c2d48308 /src/home | |
parent | Use correct error code in log message in output_waiting_jobs (#34404) (diff) | |
download | systemd-91ea3dcf35e4e3fdfe360069819517436c3ae3c7.tar.xz systemd-91ea3dcf35e4e3fdfe360069819517436c3ae3c7.zip |
homed: wait for user input during firstboot
This mirrors the behavior of `systemd-firstboot` and allows bootup
messages to settle down before user input is actually processed.
See: https://github.com/systemd/systemd/issues/34448
Diffstat (limited to 'src/home')
-rw-r--r-- | src/home/homectl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/home/homectl.c b/src/home/homectl.c index 83deeac123..a52bc6d464 100644 --- a/src/home/homectl.c +++ b/src/home/homectl.c @@ -2434,6 +2434,8 @@ static int create_interactively(void) { return 0; } + any_key_to_proceed(); + r = acquire_bus(&bus); if (r < 0) return r; |