Kill processes on shutdown
[project/procd.git] / state.c
diff --git a/state.c b/state.c
index e5f0015befd380a8e469873030a3cf03f44abe63..b9416341440d873b999dadbda8e6b43a0b9a3477 100644 (file)
--- a/state.c
+++ b/state.c
@@ -15,6 +15,8 @@
 #include <sys/reboot.h>
 #include <stdlib.h>
 #include <unistd.h>
+#include <sys/types.h>
+#include <signal.h>
 
 #include "procd.h"
 #include "syslog.h"
@@ -75,6 +77,14 @@ static void state_enter(void)
                break;
 
        case STATE_HALT:
+               LOG("- SIGTERM processes -\n");
+               kill(-1, SIGTERM);
+               sync();
+               sleep(1);
+               LOG("- SIGKILL processes -\n");
+               kill(-1, SIGKILL);
+               sync();
+               sleep(1);
                LOG("- reboot -\n");
                reboot(reboot_event);
                break;
@@ -94,6 +104,8 @@ void procd_state_next(void)
 
 void procd_shutdown(int event)
 {
+       if (state >= STATE_SHUTDOWN)
+               return;
        DEBUG(2, "Shutting down system with event %x\n", event);
        reboot_event = event;
        state = STATE_SHUTDOWN;