From: John Crispin Date: Sat, 13 Sep 2014 01:07:48 +0000 (+0200) Subject: fix timeout on shutdown X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fprocd.git;a=commitdiff_plain;h=81c9904b57d3aed01ca6d4ad027d6fc29f7fbc93 fix timeout on shutdown Signed-off-by: John Crispin --- diff --git a/rcS.c b/rcS.c index 0e1b0ba..4545621 100644 --- a/rcS.c +++ b/rcS.c @@ -114,7 +114,7 @@ static void add_initd(struct runqueue *q, char *file, char *param) s = calloc_a(sizeof(*s), &f, strlen(file) + 1, &p, strlen(param) + 1); s->proc.task.type = &initd_type; s->proc.task.complete = q_initd_complete; - if (!strcmp(param, "stop")) + if (!strcmp(param, "stop") || !strcmp(param, "shutdown")) s->proc.task.run_timeout = 15000; s->param = p; s->file = f;