2020-11-09 13:23:58 +09:00
|
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
2017-11-18 17:35:03 +01:00
|
|
|
#
|
2012-04-22 02:15:22 +02:00
|
|
|
# This file is part of systemd.
|
|
|
|
|
#
|
|
|
|
|
# systemd is free software; you can redistribute it and/or modify it
|
|
|
|
|
# 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=Console Getty
|
2017-08-07 18:30:56 +01:00
|
|
|
Documentation=man:agetty(8) man:systemd-getty-generator(8)
|
2023-05-19 15:05:30 +02:00
|
|
|
After=systemd-user-sessions.service plymouth-quit-wait.service getty-pre.target
|
2021-05-16 11:55:36 +02:00
|
|
|
{% if HAVE_SYSV_COMPAT %}
|
2023-05-19 15:05:30 +02:00
|
|
|
After=rc-local.service
|
2021-05-16 11:55:36 +02:00
|
|
|
{% endif %}
|
2012-04-22 02:15:22 +02:00
|
|
|
Before=getty.target
|
|
|
|
|
|
2017-08-09 14:43:41 +01:00
|
|
|
# OCI containers may be run without a console
|
|
|
|
|
ConditionPathExists=/dev/console
|
|
|
|
|
|
2012-04-22 02:15:22 +02:00
|
|
|
[Service]
|
2025-08-24 14:01:17 +02:00
|
|
|
ExecStart=-{{AGETTY}} --noreset --noclear --issue-file=/etc/issue:/etc/issue.d:/run/issue.d:/usr/lib/issue.d --keep-baud 115200,57600,38400,9600 - ${TERM}
|
2012-04-24 14:28:00 +02:00
|
|
|
Type=idle
|
2012-04-22 02:15:22 +02:00
|
|
|
Restart=always
|
|
|
|
|
UtmpIdentifier=cons
|
2021-10-29 13:54:31 +01:00
|
|
|
StandardInput=tty
|
|
|
|
|
StandardOutput=tty
|
2012-04-22 02:15:22 +02:00
|
|
|
TTYPath=/dev/console
|
|
|
|
|
TTYReset=yes
|
|
|
|
|
TTYVHangup=yes
|
2021-05-16 11:55:36 +02:00
|
|
|
{% if not ENABLE_LOGIND %}
|
2012-04-22 02:15:22 +02:00
|
|
|
KillMode=process
|
2021-05-16 11:55:36 +02:00
|
|
|
{% endif %}
|
2012-04-22 02:15:22 +02:00
|
|
|
IgnoreSIGPIPE=no
|
2013-07-30 01:54:59 +02:00
|
|
|
SendSIGHUP=yes
|
2024-07-30 16:22:34 +02:00
|
|
|
ImportCredential=tty.console.agetty.*:agetty.
|
|
|
|
|
ImportCredential=tty.console.login.*:login.
|
2023-07-27 16:50:58 +02:00
|
|
|
ImportCredential=agetty.*
|
|
|
|
|
ImportCredential=login.*
|
2024-09-06 16:30:54 +02:00
|
|
|
ImportCredential=shell.*
|
2012-04-22 02:15:22 +02:00
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
|
WantedBy=getty.target
|