]>
Commit | Line | Data |
---|---|---|
5e6afdd3 LP |
1 | # This file is part of systemd. |
2 | # | |
5e6afdd3 LP |
3 | # systemd is free software; you can redistribute it and/or modify it |
4 | # under the terms of the GNU General Public License as published by | |
5 | # the Free Software Foundation; either version 2 of the License, or | |
6 | # (at your option) any later version. | |
5e6afdd3 | 7 | |
5e6afdd3 LP |
8 | [Unit] |
9 | Description=Getty on %I | |
b81884e7 | 10 | BindTo=dev-%i.device |
aa2e2115 | 11 | After=dev-%i.device systemd-user-sessions.service plymouth-quit-wait.service |
af65a091 LP |
12 | m4_ifdef(`TARGET_FEDORA', |
13 | After=rc-local.service | |
14 | )m4_dnl | |
15 | m4_ifdef(`TARGET_ARCH', | |
16 | After=rc-local.service | |
17 | )m4_dnl | |
6279e1f0 MV |
18 | m4_ifdef(`TARGET_FRUGALWARE', |
19 | After=local.service | |
20 | )m4_dnl | |
53bdb7c1 AS |
21 | m4_ifdef(`TARGET_ALTLINUX', |
22 | After=rc-local.service | |
1de4d79b AB |
23 | )m4_dnl |
24 | m4_ifdef(`TARGET_MANDRIVA', | |
25 | After=rc-local.service | |
53bdb7c1 | 26 | )m4_dnl |
6fdae8a6 DM |
27 | m4_ifdef(`TARGET_MAGEIA', |
28 | After=rc-local.service | |
29 | )m4_dnl | |
5e6afdd3 | 30 | |
c84ed68f LP |
31 | # If additional gettys are spawned during boot then we should make |
32 | # sure that this is synchronized before getty.target, even though | |
33 | # getty.target didn't actually pull it in. | |
9f24a810 LP |
34 | Before=getty.target |
35 | ||
5e6afdd3 | 36 | [Service] |
180f90cb | 37 | Environment=TERM=linux |
92ab323c | 38 | ExecStart=-/sbin/agetty %I 38400 |
525ee6f4 | 39 | Restart=always |
1e3fc654 | 40 | RestartSec=0 |
169c1bda | 41 | UtmpIdentifier=%I |
6ea832a2 LP |
42 | TTYPath=/dev/%I |
43 | TTYReset=yes | |
44 | TTYVHangup=yes | |
45 | TTYVTDisallocate=yes | |
cd25cce9 | 46 | KillMode=process |
30609d9c | 47 | |
1640944a LP |
48 | # Unset locale for the console getty since the console has problems |
49 | # displaying some internationalized messages. | |
07bceef2 | 50 | 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= |
1640944a | 51 | |
30609d9c LP |
52 | # Some login implementations ignore SIGTERM, so we send SIGHUP |
53 | # instead, to ensure that login terminates cleanly. | |
7d49c547 | 54 | KillSignal=SIGHUP |
3d88bf66 LP |
55 | |
56 | [Install] | |
d0a522eb | 57 | Alias=getty.target.wants/getty@tty1.service |