Browse Source

p910nd: config trigger reload and default disabled

Signed-off-by: Chen Minqiang <ptpt52@gmail.com>
lilik-openwrt-22.03
Chen Minqiang 3 years ago
parent
commit
44410b7350
2 changed files with 9 additions and 2 deletions
  1. +1
    -1
      net/p910nd/Makefile
  2. +8
    -1
      net/p910nd/files/p910nd.init

+ 1
- 1
net/p910nd/Makefile View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=p910nd
PKG_VERSION:=0.97
PKG_RELEASE:=8
PKG_RELEASE:=9
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=@SF/p910nd


+ 8
- 1
net/p910nd/files/p910nd.init View File

@ -29,7 +29,7 @@ start_service() {
start_p910nd() {
local section="$1" runas_root
config_get_bool "enabled" "$section" "enabled" '1'
config_get_bool "enabled" "$section" "enabled" '0'
if [ "$enabled" -gt 0 ]; then
args="-d "
config_get port "$section" port
@ -57,3 +57,10 @@ start_p910nd() {
procd_close_instance
fi
}
service_triggers()
{
procd_open_trigger
procd_add_config_trigger "config.change" "p910nd" /etc/init.d/p910nd reload
procd_close_trigger
}

Loading…
Cancel
Save