chiark / gitweb /
systemctl: show exec status of all exited programs
[elogind.git] / units / emergency.service
index 924723fefede74b2fe1a98653aa5cf781b4477d7..0014c263b400e37a4f4a5edd31baa80ca05c6abf 100644 (file)
@@ -9,6 +9,9 @@
 
 [Unit]
 Description=Emergency Shell
+DefaultDependencies=no
+Wants=shutdown.target umount.target
+After=shutdown.target umount.target
 
 [Service]
 ExecStart=/bin/sh
@@ -16,3 +19,7 @@ StandardInput=tty
 Restart=restart-always
 RestartSec=0
 KillMode=process-group
+
+# Bash ignores SIGTERM, so we send SIGHUP first, to ensure that bash
+# terminates cleanly.
+ExecStop=/bin/kill -HUP $(MAINPID)