chiark / gitweb /
util: unify getenv() logic for other PID
[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 Restart=always
34 RestartSec=0
35 UtmpIdentifier=cons
36 TTYPath=/dev/console
37 TTYReset=yes
38 TTYVHangup=yes
39 KillMode=process
40 IgnoreSIGPIPE=no
41
42 # Bash ignores SIGTERM, so we send SIGHUP instead, to ensure that bash
43 # terminates cleanly.
44 KillSignal=SIGHUP
45
46 [Install]
47 WantedBy=getty.target