From 478b619281667f4a5b5fa2f7f8c4feebb1852949 Mon Sep 17 00:00:00 2001 From: Evgeny Vereshchagin Date: Fri, 11 Sep 2015 11:42:35 +0300 Subject: [PATCH] core: kill processes started due to the ExecReload= on timeout --- src/core/service.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core/service.c b/src/core/service.c index 248a9e8c623..fc28ba4d079 100644 --- a/src/core/service.c +++ b/src/core/service.c @@ -2737,6 +2737,8 @@ static int service_dispatch_timer(sd_event_source *source, usec_t usec, void *us case SERVICE_RELOAD: log_unit_warning(UNIT(s), "Reload operation timed out. Stopping."); + service_unwatch_control_pid(s); + service_kill_control_processes(s); s->reload_result = SERVICE_FAILURE_TIMEOUT; service_enter_running(s, SERVICE_SUCCESS); break; -- 2.47.3