aboutsummaryrefslogtreecommitdiff
path: root/src/rc/openrc-init.c
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2017-04-17 12:23:45 -0500
committerWilliam Hubbs <w.d.hubbs@gmail.com>2017-04-17 12:23:45 -0500
commit0e3f8720984d7d5752a78a4135cd268e4f83b3d7 (patch)
tree0d569b35dc002b43fd8ca72db65e0ef9e88fe1ca /src/rc/openrc-init.c
parent5fd3747b190887d094225547f23007d25e2d9592 (diff)
init: send term/kill signals as final step of shutdown
Diffstat (limited to 'src/rc/openrc-init.c')
-rw-r--r--src/rc/openrc-init.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/rc/openrc-init.c b/src/rc/openrc-init.c
index 621c81ea..8abe0dd6 100644
--- a/src/rc/openrc-init.c
+++ b/src/rc/openrc-init.c
@@ -96,6 +96,11 @@ static void handle_shutdown(const char *runlevel, int cmd)
pid = do_openrc(runlevel);
while (waitpid(pid, NULL, 0) != pid);
+ printf("Sending the final term signal\n");
+ kill(-1, SIGTERM);
+ sleep(3);
+ printf("Sending the final kill signal\n");
+ kill(-1, SIGKILL);
sync();
reboot(cmd);
}