You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
695 B
21 lines
695 B
--- a/server/mpm/event/event.c |
|
+++ a/server/mpm/event/event.c |
|
@@ -2735,6 +2735,7 @@ static int event_run(apr_pool_t * _pconf, apr_pool_t * plog, server_rec * s) |
|
|
|
/* we've been told to restart */ |
|
apr_signal(SIGHUP, SIG_IGN); |
|
+ apr_signal(AP_SIG_GRACEFUL, SIG_IGN); |
|
|
|
if (one_process) { |
|
/* not worth thinking about */ |
|
|
|
--- a/server/mpm/worker/worker.c |
|
+++ b/server/mpm/worker/worker.c |
|
@@ -1902,6 +1902,7 @@ static int worker_run(apr_pool_t *_pconf, apr_pool_t *plog, server_rec *s) |
|
|
|
/* we've been told to restart */ |
|
apr_signal(SIGHUP, SIG_IGN); |
|
+ apr_signal(AP_SIG_GRACEFUL, SIG_IGN); |
|
|
|
if (one_process) { |
|
/* not worth thinking about */
|
|
|