summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/main.c b/main.c
index 9323d45f73..7dbcc90d5e 100644
--- a/main.c
+++ b/main.c
@@ -387,6 +387,10 @@ int main(int argc, char *argv[]) {
/* Reset all signal handlers. */
assert_se(reset_all_signal_handlers() == 0);
+ /* If we are init, we can block sigkill. Yay. */
+ signal(SIGKILL, SIG_IGN);
+ signal(SIGPIPE, SIG_IGN);
+
/* Close all open files */
assert_se(close_all_fds(NULL, 0) == 0);