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
2016-01-18 00:25:42 +08:00
WorkingDirectory = -/root
2017-03-21 10:26:05 +08:00
ExecStartPre = -/bin/sh -c "[ -x /bin/plymouth ] && /bin/plymouth --wait quit"
2016-06-21 22:09:47 +08:00
ExecStartPre = -/bin/echo -e 'You are in rescue mode. After logging in, type "journalctl -xb" to view\\nsystem logs, "systemctl reboot" to reboot, "systemctl default" or ^D to\\nboot into default mode.'
2015-05-18 12:58:24 +08:00
ExecStart = -/bin/sh -c "@SULOGIN@; @SYSTEMCTL@ --job-mode=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
2013-07-30 07:54:59 +08:00
IgnoreSIGPIPE = no
SendSIGHUP = yes