chiark / gitweb /
service: introduce Type=idle and use it for gettys
[elogind.git] / units / console-getty.service.m4.in
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=Console Getty
10 After=systemd-user-sessions.service plymouth-quit-wait.service
11 m4_ifdef(`TARGET_FEDORA',
12 After=rc-local.service
13 )m4_dnl
14 m4_ifdef(`TARGET_ARCH',
15 After=rc-local.service
16 )m4_dnl
17 m4_ifdef(`TARGET_FRUGALWARE',
18 After=local.service
19 )m4_dnl
20 m4_ifdef(`TARGET_ALTLINUX',
21 After=rc-local.service
22 )m4_dnl
23 m4_ifdef(`TARGET_MANDRIVA',
24 After=rc-local.service
25 )m4_dnl
26 m4_ifdef(`TARGET_MAGEIA',
27 After=rc-local.service
28 )m4_dnl
29 Before=getty.target
30
31 [Service]
32 ExecStart=-/sbin/agetty --noclear -s console 115200,38400,9600
33 Type=idle
34 Restart=always
35 RestartSec=0
36 UtmpIdentifier=cons
37 TTYPath=/dev/console
38 TTYReset=yes
39 TTYVHangup=yes
40 KillMode=process
41 IgnoreSIGPIPE=no
42
43 # Bash ignores SIGTERM, so we send SIGHUP instead, to ensure that bash
44 # terminates cleanly.
45 KillSignal=SIGHUP
46
47 [Install]
48 WantedBy=getty.target