chiark / gitweb /
units: agetty overrides TERM
[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_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 [Service]
42 ExecStart=-/sbin/agetty -s %I 115200,38400,9600 vt102
43 Type=idle
44 Restart=always
45 RestartSec=0
46 UtmpIdentifier=%I
47 TTYPath=/dev/%I
48 TTYReset=yes
49 TTYVHangup=yes
50 KillMode=process
51 IgnoreSIGPIPE=no
52
53 # Some login implementations ignore SIGTERM, so we send SIGHUP
54 # instead, to ensure that login terminates cleanly.
55 KillSignal=SIGHUP