p910nd: config trigger reload and default disabled
Signed-off-by: Chen Minqiang <ptpt52@gmail.com>
This commit is contained in:
parent
233fe27d82
commit
44410b7350
2 changed files with 9 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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…
Reference in a new issue