chiark / gitweb /
b5875ce491a696153280caceee622f78a1222694
[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 Documentation=man:agetty(8)
11 After=systemd-user-sessions.service plymouth-quit-wait.service
12 m4_ifdef(`TARGET_FEDORA',
13 After=rc-local.service
14 )m4_dnl
15 m4_ifdef(`TARGET_DEBIAN',
16 After=rc.local.service
17 )m4_dnl
18 m4_ifdef(`TARGET_ARCH',
19 After=rc-local.service
20 )m4_dnl
21 m4_ifdef(`TARGET_FRUGALWARE',
22 After=local.service
23 )m4_dnl
24 m4_ifdef(`TARGET_ALTLINUX',
25 After=rc-local.service
26 )m4_dnl
27 m4_ifdef(`TARGET_MANDRIVA',
28 After=rc-local.service
29 )m4_dnl
30 m4_ifdef(`TARGET_MAGEIA',
31 After=rc-local.service
32 )m4_dnl
33
34 # If additional gettys are spawned during boot then we should make
35 # sure that this is synchronized before getty.target, even though
36 # getty.target didn't actually pull it in.
37 Before=getty.target
38 IgnoreOnIsolate=yes
39
40 # On systems without virtual consoles, don't start any getty. (Note
41 # that serial gettys are covered by serial-getty@.service, not this
42 # unit
43 ConditionPathExists=/dev/tty0
44
45 [Service]
46 Environment=TERM=linux
47 # the VT is cleared by TTYVTDisallocate
48 ExecStart=-/sbin/agetty --noclear %I 38400
49 Type=idle
50 Restart=always
51 RestartSec=0
52 UtmpIdentifier=%I
53 TTYPath=/dev/%I
54 TTYReset=yes
55 TTYVHangup=yes
56 TTYVTDisallocate=yes
57 KillMode=process
58 IgnoreSIGPIPE=no
59
60 # Unset locale for the console getty since the console has problems
61 # displaying some internationalized messages.
62 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=
63
64 # Some login implementations ignore SIGTERM, so we send SIGHUP
65 # instead, to ensure that login terminates cleanly.
66 KillSignal=SIGHUP
67
68 [Install]
69 Alias=getty.target.wants/getty@tty1.service