X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fservice.c;h=195f04a3150a4c16fd1cd7294861983193c0d410;hb=f34277d9117cd9d858f7332eef0023e05277ce74;hp=116e539d951df7303039759645589b54b0e49342;hpb=525ee6f4a1639bcb28198bf9e32b93ca2bfd268b;p=elogind.git diff --git a/src/service.c b/src/service.c index 116e539d9..195f04a31 100644 --- a/src/service.c +++ b/src/service.c @@ -39,6 +39,9 @@ #define NEWLINES "\n\r" #ifdef HAVE_SYSV_COMPAT + +#define DEFAULT_SYSV_TIMEOUT_USEC (3*USEC_PER_MINUTE) + typedef enum RunlevelType { RUNLEVEL_UP, RUNLEVEL_DOWN, @@ -790,7 +793,8 @@ static int service_load_sysv_path(Service *s, const char *path) { /* Don't timeout special services during boot (like fsck) */ s->timeout_usec = 0; - } + } else + s->timeout_usec = DEFAULT_SYSV_TIMEOUT_USEC; /* Special setting for all SysV services */ s->type = SERVICE_FORKING;