diff options
author | Roy Marples <roy@marples.name> | 2010-02-20 21:48:06 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2010-02-20 21:48:06 +0000 |
commit | 5c52e5beb588d87b1e267d0485b56a2609b5481f (patch) | |
tree | 5ae131370268f371a42aa9dd3edd482e26c11e83 /sh/runscript.sh.in | |
parent | c0f5f2122c28aa16a45fada0f95743d795be5d53 (diff) |
Fix rc_${rc_svcname}_need.
Display config depends in service depend function also.
Diffstat (limited to 'sh/runscript.sh.in')
-rw-r--r-- | sh/runscript.sh.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sh/runscript.sh.in b/sh/runscript.sh.in index 4c60a1bb..3d7252a6 100644 --- a/sh/runscript.sh.in +++ b/sh/runscript.sh.in @@ -187,8 +187,14 @@ done unset _f while [ -n "$1" ]; do + # Sepcial case depend + if [ "$1" = depend ]; then + shift + _depend + continue + fi # See if we have the required function and run it - for _cmd in describe start stop status depend ${extra_commands:-$opts} \ + for _cmd in describe start stop status ${extra_commands:-$opts} \ $extra_started_commands do if [ "$_cmd" = "$1" ]; then |