diff options
author | William Hubbs <w.d.hubbs@gmail.com> | 2015-12-01 12:31:28 -0600 |
---|---|---|
committer | William Hubbs <w.d.hubbs@gmail.com> | 2015-12-01 12:31:28 -0600 |
commit | bd9456ff3172cc88f32d67bd4e789e2beee43595 (patch) | |
tree | 6368ad7b1e85dd77a69cf9010a0377d5d9583735 | |
parent | 33d3f33b3ca7dd2ce616b8182d588d0743c2f124 (diff) |
rc-functions.sh: add support for user-defined want dependencies
-rw-r--r-- | sh/rc-functions.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/rc-functions.sh.in b/sh/rc-functions.sh.in index 911d65ac..c854876e 100644 --- a/sh/rc-functions.sh.in +++ b/sh/rc-functions.sh.in @@ -91,7 +91,7 @@ _depend() { local _rc_svcname=$(shell_var "$RC_SVCNAME") _deptype= _depends= # Add any user defined depends - for _deptype in config:CONFIG need:NEED use:USE \ + for _deptype in config:CONFIG need:NEED use:USE want:WANT \ after:AFTER before:BEFORE \ provide:PROVIDE keyword:KEYWORD; do IFS=: |