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>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@40906 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
John Crispin
2014-06-02 12:42:44 +00:00
parent 28d6ba06c2
commit cc728d09db
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ include $(INCLUDE_DIR)/version.mk
include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=base-files
PKG_RELEASE:=152
PKG_RELEASE:=153
PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/
PKG_BUILD_DEPENDS:=opkg/host

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() {