]> git.ipfire.org Git - thirdparty/systemd.git/blob - units/console-getty.service.m4
Merge pull request #12802 from irtimmer/fix-openssl
[thirdparty/systemd.git] / units / console-getty.service.m4
1 # SPDX-License-Identifier: LGPL-2.1+
2 #
3 # This file is part of systemd.
4 #
5 # systemd is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU Lesser General Public License as published by
7 # the Free Software Foundation; either version 2.1 of the License, or
8 # (at your option) any later version.
9
10 [Unit]
11 Description=Console Getty
12 Documentation=man:agetty(8) man:systemd-getty-generator(8)
13 After=systemd-user-sessions.service plymouth-quit-wait.service
14 m4_ifdef(`HAVE_SYSV_COMPAT',
15 After=rc-local.service getty-pre.target
16 )m4_dnl
17 Before=getty.target
18
19 # OCI containers may be run without a console
20 ConditionPathExists=/dev/console
21
22 [Service]
23 # The '-o' option value tells agetty to replace 'login' arguments with an
24 # option to preserve environment (-p), followed by '--' for safety, and then
25 # the entered username.
26 ExecStart=-/sbin/agetty -o '-p -- \\u' --noclear --keep-baud console 115200,38400,9600 $TERM
27 Type=idle
28 Restart=always
29 UtmpIdentifier=cons
30 TTYPath=/dev/console
31 TTYReset=yes
32 TTYVHangup=yes
33 KillMode=process
34 IgnoreSIGPIPE=no
35 SendSIGHUP=yes
36
37 [Install]
38 WantedBy=getty.target