chiark / gitweb /
units: enable automount units only if the kernel supports them
[elogind.git] / units / rescue.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 # See systemd.special(7) for details
9
10 [Unit]
11 Description=Rescue Shell
12 DefaultDependencies=no
13 Conflicts=shutdown.target
14 After=basic.target
15 Before=shutdown.target
16
17 [Service]
18 Environment=HOME=/root
19 WorkingDirectory=/root
20 ExecStartPre=-/bin/plymouth quit
21 ExecStartPre=-/bin/echo 'Welcome to rescue mode. Use "systemctl default" or ^D to activate default mode.'
22 m4_ifdef(`TARGET_FEDORA',
23 `EnvironmentFile=/etc/sysconfig/init
24 ExecStart=-/bin/bash -c "exec ${SINGLE}"',
25 m4_ifdef(`TARGET_MANDRIVA',
26 `EnvironmentFile=/etc/sysconfig/init
27 ExecStart=-/bin/bash -c "exec ${SINGLE}"',
28 `ExecStart=-/sbin/sulogin'
29 m4_ifdef(`TARGET_MEEGO',
30 `EnvironmentFile=/etc/sysconfig/init
31 ExecStart=-/bin/bash -c "exec ${SINGLE}"',)))
32 ExecStopPost=-/bin/systemctl --fail --no-block default
33 StandardInput=tty-force
34 KillMode=process
35
36 # Bash ignores SIGTERM, so we send SIGHUP instead, to ensure that bash
37 # terminates cleanly.
38 KillSignal=SIGHUP