diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2023-05-19 15:58:18 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2023-05-19 17:47:14 +0200 |
commit | a6f3a7eb8acb457e2d0a9974a03662870bdf0de0 (patch) | |
tree | 6750123f56d3592de1b340e5700a5fcfe3e3aed0 /units/systemd-vconsole-setup.service.in | |
parent | rules: start systemd-vconsole-setup via unit (diff) | |
download | systemd-a6f3a7eb8acb457e2d0a9974a03662870bdf0de0.tar.xz systemd-a6f3a7eb8acb457e2d0a9974a03662870bdf0de0.zip |
units: order sysinit.target, debug-shell.service after systemd-vconsole-setup
Previous patch to add an implicit dependency effectively orders various getty
services after systemd-vconsole-setup.service. But I think it's cleaner to also
order the service before sysinit.target, like it was before
8125e8d38e3aa099c7dce8b0161997b8842aebdc. There might be units which don't do
use TTYVHangup= but would like to have the console fully initialized.
Also, add a manual ordering to debug-shell.service, because it has
ImplicitDependencies=no. This might delay debug-shell.service a bit, but
systemd-vconsole-setup.service has no dependencies and should be very quick, so
this should not be noticable in practice. Without the ordering, the terminal
might not have a key map loaded, making debug-shell.service hard to use.
Diffstat (limited to 'units/systemd-vconsole-setup.service.in')
-rw-r--r-- | units/systemd-vconsole-setup.service.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/units/systemd-vconsole-setup.service.in b/units/systemd-vconsole-setup.service.in index c07869fedd..0009528307 100644 --- a/units/systemd-vconsole-setup.service.in +++ b/units/systemd-vconsole-setup.service.in @@ -11,6 +11,7 @@ Description=Setup Virtual Console Documentation=man:systemd-vconsole-setup.service(8) man:vconsole.conf(5) DefaultDependencies=no +Before=sysinit.target Before=initrd-switch-root.target shutdown.target ConditionPathExists=/dev/tty0 |