Переглянути джерело

procd: update to latest git head

Signed-off-by: John Crispin <[email protected]>

SVN-Revision: 38022
John Crispin 12 роки тому
батько
коміт
4f62127dea
2 змінених файлів з 20 додано та 4 видалено
  1. 2 2
      package/system/procd/Makefile
  2. 18 2
      package/system/procd/files/procd.sh

+ 2 - 2
package/system/procd/Makefile

@@ -1,14 +1,14 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=procd
-PKG_VERSION:=2013-09-10
+PKG_VERSION:=2013-09-17
 
 PKG_RELEASE=$(PKG_SOURCE_VERSION)-1
 
 PKG_SOURCE_PROTO:=git
 PKG_SOURCE_URL:=git://nbd.name/luci2/procd.git
 PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
-PKG_SOURCE_VERSION:=824a4b3da2c0be19ccf54a48dcd4c10677b82c1a
+PKG_SOURCE_VERSION:=f51f9cc5738d340423e44e678829402b367cf866
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz
 CMAKE_INSTALL:=1
 

+ 18 - 2
package/system/procd/files/procd.sh

@@ -12,6 +12,7 @@
 # procd_set_param(type, [value...])
 #   Available types:
 #     command: command line (array).
+#     respawn info: array with 3 values $restart_timeout $fail_hreshold $max_fail
 #     env: environment variable (passed to the process)
 #     data: arbitrary name/value pairs for detecting config changes (table)
 #     file: configuration files (array)
@@ -123,7 +124,7 @@ _procd_set_param() {
 		env|data)
 			_procd_add_table "$type" "$@"
 		;;
-		command|netdev|file)
+		command|netdev|file|respawn)
 			_procd_add_array "$type" "$@"
 		;;
 		nice)
@@ -153,6 +154,20 @@ _procd_add_config_trigger() {
 	json_close_array
 }
 
+_procd_add_reload_trigger() {
+	local script=$(readlink "$initscript")
+	local name=$(basename ${script:-$initscript})
+
+	_procd_add_config_trigger $1 /etc/init.d/$name reload
+}
+
+_procd_add_reload_trigger() {
+	local script=$(readlink "$initscript")
+	local name=$(basename ${script:-$initscript})
+
+	_procd_add_config_trigger $1 /etc/init.d/$name reload
+}
+
 _procd_append_param() {
 	local type="$1"; shift
 
@@ -161,7 +176,7 @@ _procd_append_param() {
 		env|data)
 			_procd_add_table_data "$@"
 		;;
-		command|netdev|file)
+		command|netdev|file|respawn)
 			_procd_add_array_data "$@"
 		;;
 	esac
@@ -197,6 +212,7 @@ _procd_wrapper \
 	procd_close_service \
 	procd_add_instance \
 	procd_add_config_trigger \
+	procd_add_reload_trigger \
 	procd_open_trigger \
 	procd_close_trigger \
 	procd_open_instance \