2020-11-09 13:23:58 +09:00
|
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
2017-11-18 17:35:03 +01:00
|
|
|
#
|
2013-10-31 01:25:44 +01: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=Container Getty on /dev/pts/%I
|
2017-08-07 18:30:56 +01:00
|
|
|
Documentation=man:agetty(8) man:systemd-getty-generator(8)
|
|
|
|
|
Documentation=man:machinectl(1)
|
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 %}
|
2013-10-31 01:25:44 +01:00
|
|
|
Before=getty.target
|
|
|
|
|
IgnoreOnIsolate=yes
|
2014-12-09 02:12:11 +01:00
|
|
|
ConditionPathExists=/dev/pts/%I
|
2013-10-31 01:25:44 +01:00
|
|
|
|
2017-08-07 19:24:32 +01:00
|
|
|
# IgnoreOnIsolate is an issue: when someone isolates rescue.target,
|
|
|
|
|
# tradition expects that we shut down all but the main console.
|
2017-09-26 18:47:50 +01:00
|
|
|
Conflicts=rescue.service
|
|
|
|
|
Before=rescue.service
|
2017-08-07 19:24:32 +01:00
|
|
|
|
2013-10-31 01:25:44 +01: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 - ${TERM}
|
2013-10-31 01:25:44 +01:00
|
|
|
Type=idle
|
|
|
|
|
Restart=always
|
|
|
|
|
RestartSec=0
|
2015-01-27 14:28:45 +01:00
|
|
|
UtmpIdentifier=pts/%I
|
2021-10-29 13:54:31 +01:00
|
|
|
StandardInput=tty
|
|
|
|
|
StandardOutput=tty
|
2015-01-27 14:28:45 +01:00
|
|
|
TTYPath=/dev/pts/%I
|
2013-10-31 01:25:44 +01:00
|
|
|
TTYReset=yes
|
|
|
|
|
TTYVHangup=yes
|
2021-05-16 11:55:36 +02:00
|
|
|
{% if not ENABLE_LOGIND %}
|
2013-10-31 01:25:44 +01:00
|
|
|
KillMode=process
|
2021-05-16 11:55:36 +02:00
|
|
|
{% endif %}
|
2013-10-31 01:25:44 +01:00
|
|
|
IgnoreSIGPIPE=no
|
|
|
|
|
SendSIGHUP=yes
|
2024-07-30 16:22:34 +02:00
|
|
|
ImportCredential=tty.container.%I.agetty.*:agetty.
|
|
|
|
|
ImportCredential=tty.container.%I.login.*:login.
|
2023-07-27 16:50:58 +02:00
|
|
|
ImportCredential=agetty.*
|
|
|
|
|
ImportCredential=login.*
|
2024-09-06 16:30:54 +02:00
|
|
|
ImportCredential=shell.*
|