]>
Commit | Line | Data |
---|---|---|
663996b3 MS |
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] | |
5eef597e | 9 | Description=Rescue Shell |
663996b3 MS |
10 | Documentation=man:sulogin(8) |
11 | DefaultDependencies=no | |
12 | Conflicts=shutdown.target | |
5eef597e | 13 | After=sysinit.target plymouth-start.service |
663996b3 MS |
14 | Before=shutdown.target |
15 | ||
16 | [Service] | |
17 | Environment=HOME=/root | |
4c89c718 | 18 | WorkingDirectory=-/root |
663996b3 | 19 | ExecStartPre=-/bin/plymouth quit |
4c89c718 | 20 | ExecStartPre=-/bin/echo -e 'Welcome to 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.' |
e3bff60a | 21 | ExecStart=-/bin/sh -c "@SULOGIN@; @SYSTEMCTL@ --job-mode=fail --no-block default" |
663996b3 MS |
22 | Type=idle |
23 | StandardInput=tty-force | |
24 | StandardOutput=inherit | |
25 | StandardError=inherit | |
26 | KillMode=process | |
27 | IgnoreSIGPIPE=no | |
14228c0d | 28 | SendSIGHUP=yes |