aboutsummaryrefslogtreecommitdiffstats
path: root/package/system/rpcd/files/rpcd.init
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2018-11-22 14:42:14 +0100
committerJo-Philipp Wich <jo@mein.io>2018-12-12 16:35:55 +0100
commit629073e86d9f43e24819e18c25c9eb63801a65a0 (patch)
treeb026d9abde2f980b644eef4df3a9eb9975014209 /package/system/rpcd/files/rpcd.init
parent1cd945ea2289f5b6047351da09d8cc2338bb002d (diff)
downloadupstream-629073e86d9f43e24819e18c25c9eb63801a65a0.tar.gz
upstream-629073e86d9f43e24819e18c25c9eb63801a65a0.tar.bz2
upstream-629073e86d9f43e24819e18c25c9eb63801a65a0.zip
rpcd: update to latest Git head
3aa81d0 file: access exec timeout via daemon ops structure 7235f34 plugin: store pointer to exec timeout value in the ops structure ccd7c0a treewide: rename exec_timeout to rpc_exec_timeout c79ef22 main: fix logic bug when not specifying a timeout option 2cc4b99 file: use global exec timeout instead of own hardcoded limit ecd1660 exec: increase maximum execution time to 120s Also expose the socket and timeout options in /etc/config/rpcd for easier use. Signed-off-by: Jo-Philipp Wich <jo@mein.io> (cherry picked from commits 41055551151e12abf8efe710efa4dc025a7b7b6a, 952b11766cd83898cf8f9626b75141eac6d4ad1a and e533fb17061027dca2cc60a9555fc2edb9e832eb)
Diffstat (limited to 'package/system/rpcd/files/rpcd.init')
-rwxr-xr-xpackage/system/rpcd/files/rpcd.init5
1 files changed, 4 insertions, 1 deletions
diff --git a/package/system/rpcd/files/rpcd.init b/package/system/rpcd/files/rpcd.init
index 98b633365b..0a37ee19f9 100755
--- a/package/system/rpcd/files/rpcd.init
+++ b/package/system/rpcd/files/rpcd.init
@@ -7,8 +7,11 @@ NAME=rpcd
PROG=/sbin/rpcd
start_service() {
+ local socket=$(uci -q get rpcd.@rpcd[0].socket)
+ local timeout=$(uci -q get rpcd.@rpcd[0].timeout)
+
procd_open_instance
- procd_set_param command "$PROG"
+ procd_set_param command "$PROG" ${socket:+-s "$socket"} ${timeout:+-t "$timeout"}
procd_close_instance
}