chiark / gitweb /
update TODO
[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 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=Serial Getty on %I
10 Documentation=man:agetty(8) man:systemd-getty-generator(8)
11 BindsTo=dev-%i.device
12 After=dev-%i.device 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_ARCH',
17 After=rc-local.service
18 )m4_dnl
19 m4_ifdef(`TARGET_FRUGALWARE',
20 After=local.service
21 )m4_dnl
22 m4_ifdef(`TARGET_ALTLINUX',
23 After=rc-local.service
24 )m4_dnl
25 m4_ifdef(`TARGET_MANDRIVA',
26 After=rc-local.service
27 )m4_dnl
28 m4_ifdef(`TARGET_MAGEIA',
29 After=rc-local.service
30 )m4_dnl
31
32 # If additional gettys are spawned during boot then we should make
33 # sure that this is synchronized before getty.target, even though
34 # getty.target didn't actually pull it in.
35 Before=getty.target
36 IgnoreOnIsolate=yes
37
38 [Service]
39 Environment=TERM=vt102
40 ExecStart=-/sbin/agetty -s %I 115200,38400,9600
41 Type=idle
42 Restart=always
43 RestartSec=0
44 UtmpIdentifier=%I
45 TTYPath=/dev/%I
46 TTYReset=yes
47 TTYVHangup=yes
48 KillMode=process
49 IgnoreSIGPIPE=no
50
51 # Some login implementations ignore SIGTERM, so we send SIGHUP
52 # instead, to ensure that login terminates cleanly.
53 KillSignal=SIGHUP