summaryrefslogtreecommitdiff
path: root/sh/runscript.sh.in
diff options
context:
space:
mode:
Diffstat (limited to 'sh/runscript.sh.in')
-rw-r--r--sh/runscript.sh.in8
1 files changed, 7 insertions, 1 deletions
diff --git a/sh/runscript.sh.in b/sh/runscript.sh.in
index 4c60a1b..3d7252a 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