add a build-time option to disable init related code
[project/procd.git] / state.c
diff --git a/state.c b/state.c
index 1ed70f542f13d3ec7b8a3d3cf2fcf8e31cf42cd8..d51970e952d5a3326020aaf5745463d1e5f3cf5b 100644 (file)
--- a/state.c
+++ b/state.c
@@ -150,6 +150,7 @@ static void state_enter(void)
                kill(-1, SIGKILL);
                sync();
                sleep(1);
+#ifndef DISABLE_INIT
                if (reboot_event == RB_POWER_OFF)
                        LOG("- power down -\n");
                else
@@ -165,9 +166,11 @@ static void state_enter(void)
                        reboot(reboot_event);
                        _exit(EXIT_SUCCESS);
                }
-
                while (1)
                        sleep(1);
+#else
+               exit(0);
+#endif
                break;
 
        default: