Author: blogic Date: 2016-03-10 20:11:17 +0100 (Thu, 10 Mar 2016) New Revision: 48984
Modified: trunk/package/system/procd/files/procd.sh Log: procd: support pidfile writing. procd from revision b12bb150ed38a4409bef5127c77b060ee616b860 supports writing a pidfile. This adds support for setting that parameter with standard init script hooks: procd_set_param pidfile /var/run/someprocess.pid Signed-off-by: Karl Palsson <[email protected]> Modified: trunk/package/system/procd/files/procd.sh =================================================================== --- trunk/package/system/procd/files/procd.sh 2016-03-10 19:11:13 UTC (rev 48983) +++ trunk/package/system/procd/files/procd.sh 2016-03-10 19:11:17 UTC (rev 48984) @@ -19,6 +19,7 @@ # netdev: bound network device (detects ifindex changes) # limits: resource limits (passed to the process) # user info: array with 1 values $username +# pidfile: file name to write pid into # # No space separation is done for arrays/tables - use one function argument per command line argument # @@ -195,7 +196,7 @@ nice) json_add_int "$type" "$1" ;; - user|seccomp|capabilities) + pidfile|user|seccomp|capabilities) json_add_string "$type" "$1" ;; stdout|stderr|no_new_privs) _______________________________________________ openwrt-commits mailing list [email protected] https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-commits
