From 3dc712e22244b5286782957255de42d00f37cd4d Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Fri, 4 Sep 2009 16:00:08 +0100 Subject: Allow init scripts to show their dependencies easier --- sh/runscript.sh.in | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) (limited to 'sh') diff --git a/sh/runscript.sh.in b/sh/runscript.sh.in index d7020e35..4c60a1bb 100644 --- a/sh/runscript.sh.in +++ b/sh/runscript.sh.in @@ -25,6 +25,29 @@ shift # Compat export SVCNAME=$RC_SVCNAME +# Dependency function +config() { + [ -n "$*" ] && echo "config $*" +} +need() { + [ -n "$*" ] && echo "need $*" +} +use() { + [ -n "$*" ] && echo "use $*" +} +before() { + [ -n "$*" ] && echo "before $*" +} +after() { + [ -n "$*" ] && echo "after $*" +} +provide() { + [ -n "$*" ] && echo "provide $*" +} +keyword() { + [ -n "$*" ] && echo "keyword $*" +} + # Descript the init script to the user describe() { @@ -165,7 +188,7 @@ unset _f while [ -n "$1" ]; do # See if we have the required function and run it - for _cmd in describe start stop status ${extra_commands:-$opts} \ + for _cmd in describe start stop status depend ${extra_commands:-$opts} \ $extra_started_commands do if [ "$_cmd" = "$1" ]; then -- cgit v1.2.3