chiark / gitweb /
localectl: fix dbus call arguments in set_x11_keymap
[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) man:systemd-getty-generator(8)
11 Documentation=http://0pointer.de/blog/projects/serial-console.html
12 After=systemd-user-sessions.service plymouth-quit-wait.service
13 m4_ifdef(`TARGET_FEDORA',
14 After=rc-local.service
15 )m4_dnl
16 m4_ifdef(`TARGET_DEBIAN',
17 After=rc.local.service
18 )m4_dnl
19 m4_ifdef(`TARGET_ARCH',
20 After=rc-local.service
21 )m4_dnl
22 m4_ifdef(`TARGET_FRUGALWARE',
23 After=local.service
24 )m4_dnl
25 m4_ifdef(`TARGET_ALTLINUX',
26 After=rc-local.service
27 )m4_dnl
28 m4_ifdef(`TARGET_MANDRIVA',
29 After=rc-local.service
30 )m4_dnl
31 m4_ifdef(`TARGET_MAGEIA',
32 After=rc-local.service
33 )m4_dnl
34
35 # If additional gettys are spawned during boot then we should make
36 # sure that this is synchronized before getty.target, even though
37 # getty.target didn't actually pull it in.
38 Before=getty.target
39 IgnoreOnIsolate=yes
40
41 # On systems without virtual consoles, don't start any getty. (Note
42 # that serial gettys are covered by serial-getty@.service, not this
43 # unit
44 ConditionPathExists=/dev/tty0
45
46 [Service]
47 # the VT is cleared by TTYVTDisallocate
48 ExecStart=-/sbin/agetty --noclear %I 38400 linux
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