2020-11-09 07:23:58 +03:00
# SPDX-License-Identifier: LGPL-2.1-or-later
2017-11-18 19:35:03 +03:00
#
2013-10-31 04:25:44 +04: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 20:30:56 +03:00
Documentation=man:agetty(8) man:systemd-getty-generator(8)
Documentation=man:machinectl(1)
2013-10-31 04:25:44 +04:00
After=systemd-user-sessions.service plymouth-quit-wait.service
m4_ifdef(`HAVE_SYSV_COMPAT',
2017-09-05 15:53:25 +03:00
After=rc-local.service getty-pre.target
2013-10-31 04:25:44 +04:00
)m4_dnl
Before=getty.target
IgnoreOnIsolate=yes
2014-12-09 04:12:11 +03:00
ConditionPathExists=/dev/pts/%I
2013-10-31 04:25:44 +04:00
2017-08-07 21:24:32 +03:00
# IgnoreOnIsolate is an issue: when someone isolates rescue.target,
# tradition expects that we shut down all but the main console.
2017-09-26 20:47:50 +03:00
Conflicts=rescue.service
Before=rescue.service
2017-08-07 21:24:32 +03:00
2013-10-31 04:25:44 +04:00
[Service]
2017-05-24 14:58:01 +03:00
# 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.
ExecStart=-/sbin/agetty -o '-p -- \\u' --noclear --keep-baud pts/%I 115200,38400,9600 $TERM
2013-10-31 04:25:44 +04:00
Type=idle
Restart=always
RestartSec=0
2015-01-27 16:28:45 +03:00
UtmpIdentifier=pts/%I
TTYPath=/dev/pts/%I
2013-10-31 04:25:44 +04:00
TTYReset=yes
TTYVHangup=yes
2020-05-26 15:12:56 +03:00
m4_ifdef(`ENABLE_LOGIND',,
2013-10-31 04:25:44 +04:00
KillMode=process
2020-05-26 15:12:56 +03:00
)m4_dnl
2013-10-31 04:25:44 +04:00
IgnoreSIGPIPE=no
SendSIGHUP=yes