diff options
author | Roy Marples <roy@marples.name> | 2009-07-01 00:07:32 +0100 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2009-07-01 00:07:32 +0100 |
commit | b4104957b198b38aba609ed3889e7fa605012d19 (patch) | |
tree | 0adad424aa3e5f5ab6fa6cb4f48f9ac9323dc29a /src/rc/runscript.c | |
parent | 6abeec74301d8406ebbbd653b9fe9a0e234c09bf (diff) |
We should use -feature instead of nofeature.
This matches the ifconfig and Gentoo USE flag syntax and is hopefully
easier to read.
Fixes #178.
Diffstat (limited to 'src/rc/runscript.c')
-rw-r--r-- | src/rc/runscript.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rc/runscript.c b/src/rc/runscript.c index 91a31a59..ca0d3252 100644 --- a/src/rc/runscript.c +++ b/src/rc/runscript.c @@ -471,7 +471,8 @@ svc_wait(const char *svc) /* Some services don't have a timeout, like fsck */ keywords = rc_deptree_depend(deptree, svc, "keyword"); - if (rc_stringlist_find(keywords, "notimeout")) + if (rc_stringlist_find(keywords, "-timeout") || + rc_stringlist_find(keywords, "notimeout")) forever = true; rc_stringlist_free(keywords); |