diff options
author | Florian Fainelli <florian@openwrt.org> | 2009-07-26 12:34:09 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2009-07-26 12:34:09 +0000 |
commit | de3a491240544e31bc198a1f6662d3cef125c514 (patch) | |
tree | 28ecefe8affd33722b6c3d65f8489fc504ea4dd8 /package/base-files | |
parent | 5b7e8203d36dfbb13039d12646c0b70c17c7dcd7 (diff) | |
download | upstream-de3a491240544e31bc198a1f6662d3cef125c514.tar.gz upstream-de3a491240544e31bc198a1f6662d3cef125c514.tar.bz2 upstream-de3a491240544e31bc198a1f6662d3cef125c514.zip |
simplify action handling in rc.common (#5558)
SVN-Revision: 17012
Diffstat (limited to 'package/base-files')
-rwxr-xr-x | package/base-files/files/etc/rc.common | 32 |
1 files changed, 9 insertions, 23 deletions
diff --git a/package/base-files/files/etc/rc.common b/package/base-files/files/etc/rc.common index 4f1a4a3a08..2b7bf5a110 100755 --- a/package/base-files/files/etc/rc.common +++ b/package/base-files/files/etc/rc.common @@ -1,8 +1,12 @@ #!/bin/sh -# Copyright (C) 2006 OpenWrt.org +# Copyright (C) 2006-2009 OpenWrt.org . $IPKG_INSTROOT/etc/functions.sh +initscript=$1 +action=${2:-help} +shift 2 + start() { return 0 } @@ -66,27 +70,9 @@ $EXTRA_HELP EOF } -initscript="$1" -[ "$#" -ge 1 ] && shift -action="$1" -[ "$#" -ge 1 ] && shift - . "$initscript" -cmds= -for cmd in $EXTRA_COMMANDS; do - cmds="${cmds:+$cmds$N}$cmd) $cmd \"\$@\";;" -done -eval "case \"\$action\" in - start) start \"\$@\";; - stop) stop \"\$@\";; - reload) reload \"\$@\" || restart \"\$@\";; - restart) restart \"\$@\";; - boot) boot \"\$@\";; - shutdown) shutdown \"\$@\";; - enable) enable \"\$@\";; - enabled) enabled \"\$@\";; - disable) disable \"\$@\";; - $cmds - *) help;; -esac" +ALL_COMMANDS="start stop reload restart boot shutdown enable disable enabled depends ${EXTRA_COMMANDS}" +list_contains ALL_COMMANDS "$action" || action=help +[ "$action" == reload ] && action='eval reload "$@" || restart "$@" && :' +$action "$@" |