mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-20 17:32:57 +00:00
parent
5b7e8203d3
commit
de3a491240
@ -1,8 +1,12 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# Copyright (C) 2006 OpenWrt.org
|
# Copyright (C) 2006-2009 OpenWrt.org
|
||||||
|
|
||||||
. $IPKG_INSTROOT/etc/functions.sh
|
. $IPKG_INSTROOT/etc/functions.sh
|
||||||
|
|
||||||
|
initscript=$1
|
||||||
|
action=${2:-help}
|
||||||
|
shift 2
|
||||||
|
|
||||||
start() {
|
start() {
|
||||||
return 0
|
return 0
|
||||||
}
|
}
|
||||||
@ -66,27 +70,9 @@ $EXTRA_HELP
|
|||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
initscript="$1"
|
|
||||||
[ "$#" -ge 1 ] && shift
|
|
||||||
action="$1"
|
|
||||||
[ "$#" -ge 1 ] && shift
|
|
||||||
|
|
||||||
. "$initscript"
|
. "$initscript"
|
||||||
|
|
||||||
cmds=
|
ALL_COMMANDS="start stop reload restart boot shutdown enable disable enabled depends ${EXTRA_COMMANDS}"
|
||||||
for cmd in $EXTRA_COMMANDS; do
|
list_contains ALL_COMMANDS "$action" || action=help
|
||||||
cmds="${cmds:+$cmds$N}$cmd) $cmd \"\$@\";;"
|
[ "$action" == reload ] && action='eval reload "$@" || restart "$@" && :'
|
||||||
done
|
$action "$@"
|
||||||
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"
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user