diff options
author | Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk> | 2018-01-02 14:34:51 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2018-01-02 17:02:44 +0100 |
commit | 37bb463daa21e2c97365c6543b2bfdfe673c5baa (patch) | |
tree | 20c22361ac44dfe79971d1862698ac23d79ca590 /package/system | |
parent | 3804f5743df2fbc02ed29557a8782a4bcce88058 (diff) | |
download | upstream-37bb463daa21e2c97365c6543b2bfdfe673c5baa.tar.gz upstream-37bb463daa21e2c97365c6543b2bfdfe673c5baa.tar.bz2 upstream-37bb463daa21e2c97365c6543b2bfdfe673c5baa.zip |
procd: procd_send_signal use signal names
Usage documentation for 'procd_send_signal' states "The signal is SIGHUP
by default, and must be specified by NAME." Make actual behaviour match
the stated documented behaviour.
https://wiki.openwrt.org/inbox/procd-init-scripts
Suggested-by: Jo-Philip Wich <jow@mein.io>
Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
Diffstat (limited to 'package/system')
-rw-r--r-- | package/system/procd/Makefile | 2 | ||||
-rw-r--r-- | package/system/procd/files/procd.sh | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/package/system/procd/Makefile b/package/system/procd/Makefile index bffed81c90..7c8a1669b0 100644 --- a/package/system/procd/Makefile +++ b/package/system/procd/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=procd -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL=$(LEDE_GIT)/project/procd.git diff --git a/package/system/procd/files/procd.sh b/package/system/procd/files/procd.sh index b8d3513b1e..b4b6faa662 100644 --- a/package/system/procd/files/procd.sh +++ b/package/system/procd/files/procd.sh @@ -413,6 +413,10 @@ _procd_send_signal() { local instance="$2" local signal="$3" + case "$signal" in + [A-Z]*) signal="$(kill -l "$signal" 2>/dev/null)" || return 1;; + esac + json_init json_add_string name "$service" [ -n "$instance" -a "$instance" != "*" ] && json_add_string instance "$instance" |