From: Lennart Poettering Date: Tue, 13 Apr 2010 00:01:28 +0000 (+0200) Subject: main: ignore SIGKILL and SIGPIPE so that nothing intereferes with us X-Git-Tag: 0.git+20100605+dfd8ee-1~147 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=078e45398127cfef1c146d39f634c45cbfee1b28;p=systemd main: ignore SIGKILL and SIGPIPE so that nothing intereferes with us --- 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);