From 90a13a44cbae440d973144706aec039c7dab2e38 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Tue, 13 Apr 2010 18:39:37 +0200 Subject: [PATCH] service: don't timeout special services --- service.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/service.c b/service.c index ddf03bbf1..86406e804 100644 --- a/service.c +++ b/service.c @@ -623,6 +623,10 @@ static int service_load_sysv_path(Service *s, const char *path) { /* Special setting for all SysV services */ s->valid_no_process = true; + /* Don't timeout special services during boot (like fsck) */ + if (!chars_intersect("12345", s->sysv_runlevels)) + s->timeout_usec = -1; + u->meta.load_state = UNIT_LOADED; r = 0; -- 2.30.2