chiark / gitweb /
mount: add automatic start ordering dependencies for mounts
[elogind.git] / units / emergency.service
index 83b7d72b7b7da7af76018ce27efe00500d50ac59..bcedebfa089d711f8df3201b3637381c847cfa7a 100644 (file)
@@ -10,6 +10,8 @@
 [Unit]
 Description=Emergency Shell
 DefaultDependencies=no
+Requires=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)