diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-04-24 02:05:42 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-04-24 02:05:42 +0200 |
commit | e93bc5a61f8589f01e779ab2b5ffc7c7ca072074 (patch) | |
tree | a857e894b6917bbfddddc6bc7be7c838a80fa151 /service.c | |
parent | 4e8e2288650780f74f90ee0c5133c1effbfdca17 (diff) |
service: don't wait for any child unless we no its pid
Diffstat (limited to 'service.c')
-rw-r--r-- | service.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1413,7 +1413,7 @@ static void service_enter_signal(Service *s, ServiceState state, bool success) { } } - if (sent) { + if (sent && (s->main_pid > 0 || s->control_pid > 0)) { if (s->timeout_usec > 0) if ((r = unit_watch_timer(UNIT(s), s->timeout_usec, &s->timer_watch)) < 0) goto fail; |