2
0
forked from Ivasoft/openwrt

base-files: calling stop_service before procd_kill.

Before this patch, doing `/e/c/network restart' will emit the folloing
error by `ubus network.wireless down "{}"' because netifd already quit
by that time.

	Command failed: not found

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>

SVN-Revision: 40906
This commit is contained in:
John Crispin
2014-06-02 12:42:44 +00:00
parent 8f100f4f2e
commit 44e2de03a4
2 changed files with 2 additions and 2 deletions

View File

@@ -112,8 +112,8 @@ ${INIT_TRACE:+set -x}
}
stop() {
procd_kill "$(basename ${basescript:-$initscript})" "$1"
stop_service "$@"
procd_kill "$(basename ${basescript:-$initscript})" "$1"
}
reload() {