chiark / gitweb /
units: teach m4 scripts in units/ about Debian's rc.local
[elogind.git] / units / console-shell.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 Shell
10 Documentation=man:sulogin(8)
11 After=systemd-user-sessions.service plymouth-quit-wait.service
12 m4_ifdef(`TARGET_FEDORA',
13 After=rc-local.service
14 )m4_dnl
15 m4_ifdef(`TARGET_DEBIAN',
16 After=rc.local.service
17 )m4_dnl
18 m4_ifdef(`TARGET_ARCH',
19 After=rc-local.service
20 )m4_dnl
21 m4_ifdef(`TARGET_FRUGALWARE',
22 After=local.service
23 )m4_dnl
24 m4_ifdef(`TARGET_ALTLINUX',
25 After=rc-local.service
26 )m4_dnl
27 m4_ifdef(`TARGET_MANDRIVA',
28 After=rc-local.service
29 )m4_dnl
30 m4_ifdef(`TARGET_MAGEIA',
31 After=rc-local.service
32 )m4_dnl
33 Before=getty.target
34
35 [Service]
36 Environment=HOME=/root
37 WorkingDirectory=/root
38 ExecStart=-/sbin/sulogin
39 ExecStopPost=-@SYSTEMCTL@ poweroff
40 Type=idle
41 StandardInput=tty-force
42 StandardOutput=inherit
43 StandardError=inherit
44 KillMode=process
45 IgnoreSIGPIPE=no
46
47 # Bash ignores SIGTERM, so we send SIGHUP instead, to ensure that bash
48 # terminates cleanly.
49 KillSignal=SIGHUP
50
51 [Install]
52 WantedBy=getty.target