diff options
Diffstat (limited to 'sh')
-rwxr-xr-x | sh/runscript.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sh/runscript.sh b/sh/runscript.sh index a3b3cdc3..d60cff8a 100755 --- a/sh/runscript.sh +++ b/sh/runscript.sh @@ -48,7 +48,7 @@ describe() { fi local svc= desc= - for svc in ${extra_commands:-${opts}}; do + for svc in ${extra_commands:-${opts}} ${extra_started_commands}; do eval desc=\$description_${svc} if [ -n "${desc}" ]; then einfo "${HILITE}${svc}${NORMAL}: ${desc}" |