init: HUP should not be temporarily set to "restart",

we use it for config reload, and we have QUIT for "restart".
This commit is contained in:
Denis Vlasenko 2008-02-19 12:08:38 +00:00
parent 8617454027
commit 99a61842df

View File

@ -853,10 +853,7 @@ int init_main(int argc, char **argv)
}
/* Set up sig handlers -- be sure to
* clear all of these in run() */
bb_signals(0
+ (1 << SIGHUP)
+ (1 << SIGQUIT)
, exec_restart_action);
signal(SIGQUIT, exec_restart_action);
bb_signals(0
+ (1 << SIGUSR1) /* halt */
+ (1 << SIGUSR2) /* poweroff */