chiark / gitweb /
service: introduce Type=idle and use it for gettys
[elogind.git] / units / getty@.service.m4
1 #  This file is part of systemd.
2 #
3 #  systemd is free software; you can redistribute it and/or modify it
4 #  under the terms of the GNU Lesser General Public License as published by
5 #  the Free Software Foundation; either version 2.1 of the License, or
6 #  (at your option) any later version.
7
8 [Unit]
9 Description=Getty on %I
10 After=systemd-user-sessions.service plymouth-quit-wait.service
11 m4_ifdef(`TARGET_FEDORA',
12 After=rc-local.service
13 )m4_dnl
14 m4_ifdef(`TARGET_ARCH',
15 After=rc-local.service
16 )m4_dnl
17 m4_ifdef(`TARGET_FRUGALWARE',
18 After=local.service
19 )m4_dnl
20 m4_ifdef(`TARGET_ALTLINUX',
21 After=rc-local.service
22 )m4_dnl
23 m4_ifdef(`TARGET_MANDRIVA',
24 After=rc-local.service
25 )m4_dnl
26 m4_ifdef(`TARGET_MAGEIA',
27 After=rc-local.service
28 )m4_dnl
29
30 # If additional gettys are spawned during boot then we should make
31 # sure that this is synchronized before getty.target, even though
32 # getty.target didn't actually pull it in.
33 Before=getty.target
34 IgnoreOnIsolate=yes
35
36 # On systems without virtual consoles, don't start any getty. (Note
37 # that serial gettys are covered by serial-getty@.service, not this
38 # unit
39 ConditionPathExists=/dev/tty0
40
41 [Service]
42 Environment=TERM=linux
43 ExecStart=-/sbin/agetty %I 38400
44 Type=idle
45 Restart=always
46 RestartSec=0
47 UtmpIdentifier=%I
48 TTYPath=/dev/%I
49 TTYReset=yes
50 TTYVHangup=yes
51 TTYVTDisallocate=yes
52 KillMode=process
53 IgnoreSIGPIPE=no
54
55 # Unset locale for the console getty since the console has problems
56 # displaying some internationalized messages.
57 Environment=LANG= LANGUAGE= LC_CTYPE= LC_NUMERIC= LC_TIME= LC_COLLATE= LC_MONETARY= LC_MESSAGES= LC_PAPER= LC_NAME= LC_ADDRESS= LC_TELEPHONE= LC_MEASUREMENT= LC_IDENTIFICATION=
58
59 # Some login implementations ignore SIGTERM, so we send SIGHUP
60 # instead, to ensure that login terminates cleanly.
61 KillSignal=SIGHUP
62
63 [Install]
64 Alias=getty.target.wants/getty@tty1.service