chiark / gitweb /
shutdownd: use PassCred=yes in the socket unit
[elogind.git] / units / serial-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 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.
7
8 [Unit]
9 Description=Serial Getty on %I
10 BindTo=dev-%i.device
11 After=dev-%i.device 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_ARCH',
16 After=rc-local.service
17 )m4_dnl
18 m4_ifdef(`TARGET_FRUGALWARE',
19 After=local.service
20 )m4_dnl
21 m4_ifdef(`TARGET_ALTLINUX',
22 After=rc-local.service
23 )m4_dnl
24 m4_ifdef(`TARGET_MANDRIVA',
25 After=rc-local.service
26 )m4_dnl
27 m4_ifdef(`TARGET_MAGEIA',
28 After=rc-local.service
29 )m4_dnl
30
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.
34 Before=getty.target
35
36 [Service]
37 Environment=TERM=vt100
38 ExecStart=-/sbin/agetty -s %I 115200,38400,9600
39 Restart=always
40 RestartSec=0
41 UtmpIdentifier=%I
42 TTYPath=/dev/%I
43 TTYReset=yes
44 TTYVHangup=yes
45 KillMode=process
46
47 # Some login implementations ignore SIGTERM, so we send SIGHUP
48 # instead, to ensure that login terminates cleanly.
49 KillSignal=SIGHUP