From 078e45398127cfef1c146d39f634c45cbfee1b28 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 13 Apr 2010 02:01:28 +0200 Subject: [PATCH] main: ignore SIGKILL and SIGPIPE so that nothing intereferes with us --- main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.c b/main.c index 9323d45f..7dbcc90d 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); -- 2.39.5