diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-04-12 17:31:26 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-04-12 17:31:26 +0200 |
commit | 8ef58b3efcbafe062e0c2c2531839c1e583b81fd (patch) | |
tree | 547858f5e08bc01a7b20d04304a8a10c0ae0a6eb /units/getty@.service.m4 | |
parent | getty: VC devices are always available, we don't need to wait until they show up (diff) | |
download | systemd-8ef58b3efcbafe062e0c2c2531839c1e583b81fd.tar.xz systemd-8ef58b3efcbafe062e0c2c2531839c1e583b81fd.zip |
getty: skip VC gettys if the VC subsystem is not available
Diffstat (limited to '')
-rw-r--r-- | units/getty@.service.m4 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/units/getty@.service.m4 b/units/getty@.service.m4 index c09722f429..17c76f5b31 100644 --- a/units/getty@.service.m4 +++ b/units/getty@.service.m4 @@ -33,6 +33,11 @@ After=rc-local.service Before=getty.target IgnoreOnIsolate=yes +# On systems without virtual consoles, don't start any getty. (Note +# that serial gettys are covered by serial-getty@.service, not this +# unit +ConditionPathExists=/dev/tty0 + [Service] Environment=TERM=linux ExecStart=-/sbin/agetty %I 38400 |