chiark / gitweb /
systemctl: show exec status of all exited programs
[elogind.git] / units / emergency.service
index 83b7d72b7b7da7af76018ce27efe00500d50ac59..0014c263b400e37a4f4a5edd31baa80ca05c6abf 100644 (file)
@@ -10,6 +10,8 @@
 [Unit]
 Description=Emergency Shell
 DefaultDependencies=no
+Wants=shutdown.target umount.target
+After=shutdown.target umount.target
 
 [Service]
 ExecStart=/bin/sh
@@ -17,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)