Просмотр исходного кода

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 <[email protected]>

SVN-Revision: 40906
John Crispin 11 лет назад
Родитель
Сommit
44e2de03a4
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      package/base-files/Makefile
  2. 1 1
      package/base-files/files/etc/rc.common

+ 1 - 1
package/base-files/Makefile

@@ -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

+ 1 - 1
package/base-files/files/etc/rc.common

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