Author: blogic Date: 2014-09-11 14:28:00 +0200 (Thu, 11 Sep 2014) New Revision: 42471
Modified: trunk/package/system/procd/Makefile trunk/package/system/procd/files/procd.sh Log: procd: update to latest git add support for starting services as !root Signed-off-by: John Crispin <[email protected]> Modified: trunk/package/system/procd/Makefile =================================================================== --- trunk/package/system/procd/Makefile 2014-09-11 12:27:49 UTC (rev 42470) +++ trunk/package/system/procd/Makefile 2014-09-11 12:28:00 UTC (rev 42471) @@ -8,14 +8,14 @@ include $(TOPDIR)/rules.mk PKG_NAME:=procd -PKG_VERSION:=2014-08-29 +PKG_VERSION:=2014-09-09 PKG_RELEASE=$(PKG_SOURCE_VERSION) PKG_SOURCE_PROTO:=git PKG_SOURCE_URL:=git://nbd.name/luci2/procd.git PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION) -PKG_SOURCE_VERSION:=6a6fa0a6067cb3c522f5dc735e808a68f62b30b2 +PKG_SOURCE_VERSION:=4bd633868e3284659668f14aa39ea84aaadc2dec PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(PKG_SOURCE_VERSION).tar.gz CMAKE_INSTALL:=1 Modified: trunk/package/system/procd/files/procd.sh =================================================================== --- trunk/package/system/procd/files/procd.sh 2014-09-11 12:27:49 UTC (rev 42470) +++ trunk/package/system/procd/files/procd.sh 2014-09-11 12:28:00 UTC (rev 42471) @@ -18,6 +18,7 @@ # file: configuration files (array) # netdev: bound network device (detects ifindex changes) # limits: resource limits (passed to the process) +# user info: array with 1 values $username # # No space separation is done for arrays/tables - use one function argument per command line argument # @@ -139,6 +140,9 @@ nice) json_add_int "$type" "$1" ;; + user) + json_add_string "$type" "$1" + ;; esac } _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
