2010-07-13 06:04:14 +08:00
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
2012-04-12 06:20:58 +08:00
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
2010-07-13 06:04:14 +08:00
# (at your option) any later version.
[Unit]
Description=Rescue Shell
2012-06-27 07:07:04 +08:00
Documentation=man:sulogin(8)
2010-07-13 06:04:14 +08:00
DefaultDependencies=no
2010-10-29 10:09:36 +08:00
Conflicts=shutdown.target
2012-05-22 22:12:25 +08:00
After=sysinit.target plymouth-start.service
2010-10-29 10:09:36 +08:00
Before=shutdown.target
2010-07-13 06:04:14 +08:00
[Service]
2010-09-10 22:53:53 +08:00
Environment=HOME=/root
2010-09-10 23:11:29 +08:00
WorkingDirectory=/root
2011-02-24 01:42:08 +08:00
ExecStartPre=-/bin/plymouth quit
2012-11-16 10:03:54 +08:00
ExecStartPre=-/bin/echo -e 'Welcome to rescue mode! Type "systemctl default" or ^D to enter default mode.\\nType "journalctl -xb" to view system logs. Type "systemctl reboot" to reboot.'
2013-01-05 05:38:11 +08:00
ExecStart=-/sbin/sulogin
2012-04-04 12:22:21 +08:00
ExecStopPost=-@SYSTEMCTL@ --fail --no-block default
2012-04-24 20:28:00 +08:00
Type=idle
2010-07-13 06:04:14 +08:00
StandardInput=tty-force
2011-09-20 18:11:04 +08:00
StandardOutput=inherit
StandardError=inherit
2011-03-30 05:31:38 +08:00
KillMode=process
2010-07-13 06:04:14 +08:00
2010-08-06 02:29:11 +08:00
# Bash ignores SIGTERM, so we send SIGHUP instead, to ensure that bash
2010-07-13 06:04:14 +08:00
# terminates cleanly.
2010-08-06 02:29:11 +08:00
KillSignal=SIGHUP