Files
systemd/units/serial-getty@.service.in
T

53 lines
1.6 KiB
Plaintext
Raw Normal View History

2020-11-09 13:23:58 +09:00
# SPDX-License-Identifier: LGPL-2.1-or-later
2017-11-18 17:35:03 +01:00
#
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
2012-04-12 00:20:58 +02:00
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
[Unit]
Description=Serial Getty on %I
2012-06-27 15:12:29 +02:00
Documentation=man:agetty(8) man:systemd-getty-generator(8)
Documentation=https://0pointer.de/blog/projects/serial-console.html
2012-07-13 23:34:40 +02:00
BindsTo=dev-%i.device
2017-08-31 11:20:14 +02:00
After=dev-%i.device systemd-user-sessions.service plymouth-quit-wait.service getty-pre.target
2021-05-16 11:55:36 +02:00
{% if HAVE_SYSV_COMPAT %}
2011-10-28 19:16:33 +02:00
After=rc-local.service
2021-05-16 11:55:36 +02:00
{% endif %}
2010-10-08 18:22:44 +02:00
# If additional gettys are spawned during boot then we should make
# sure that this is synchronized before getty.target, even though
# getty.target didn't actually pull it in.
Before=getty.target
2012-04-11 21:58:33 +02:00
IgnoreOnIsolate=yes
# IgnoreOnIsolate causes issues with sulogin, if someone isolates
# rescue.target or starts rescue.service from multi-user.target or
# graphical.target.
Conflicts=rescue.service
Before=rescue.service
[Service]
# The '-o' option value tells agetty to replace 'login' arguments with an
# option to preserve environment (-p), followed by '--' for safety, and then
# the entered username.
2021-10-29 13:54:31 +01:00
ExecStart=-/sbin/agetty -o '-p -- \\u' --keep-baud 115200,57600,38400,9600 - $TERM
Type=idle
Restart=always
2010-10-08 18:22:44 +02:00
UtmpIdentifier=%I
2021-10-29 13:54:31 +01:00
StandardInput=tty
StandardOutput=tty
2011-05-18 01:07:31 +02:00
TTYPath=/dev/%I
TTYReset=yes
TTYVHangup=yes
2021-05-16 11:55:36 +02:00
{% if not ENABLE_LOGIND %}
KillMode=process
2021-05-16 11:55:36 +02:00
{% endif %}
2012-02-09 03:18:04 +01:00
IgnoreSIGPIPE=no
SendSIGHUP=yes
[Install]
WantedBy=getty.target