chiark / gitweb /
units: enable var-run + var-lock service by default
[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 Requires=dev-%i.device
11 After=dev-%i.device
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
19 # If additional gettys are spawned during boot (possibly by
20 # systemd-auto-console-getty) then we should make sure that this is
21 # synchronized before getty.target, even though getty.target didn't
22 # actually pull it in.
23 Before=getty.target
24
25 [Service]
26 Environment=TERM=vt100-nav
27 m4_ifdef(`TARGET_FEDORA',
28 ExecStartPre=-/sbin/securetty %I
29 )m4_dnl
30 ExecStart=-/sbin/agetty -s %I 115200,38400,9600
31 Restart=restart-always
32 RestartSec=0
33 KillMode=process-group
34
35 # Some login implementations ignore SIGTERM, so we send SIGHUP
36 # instead, to ensure that login terminates cleanly.
37 KillSignal=SIGHUP