bulkdata: 2.0.8

This commit is contained in:
vdutta 2022-11-07 18:17:49 +05:30
parent ba6f732628
commit 39fd5323b0
2 changed files with 5 additions and 7 deletions

View file

@ -8,7 +8,7 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
PKG_NAME:=bulkdata PKG_NAME:=bulkdata
PKG_VERSION:=2.0.7 PKG_VERSION:=2.0.8
LOCAL_DEV:=0 LOCAL_DEV:=0
ifneq ($(LOCAL_DEV),1) ifneq ($(LOCAL_DEV),1)

View file

@ -12,13 +12,11 @@ start_service() {
config_load bulkdata config_load bulkdata
config_get_bool enable bulkdata enable 1 config_get_bool enable bulkdata enable 1
[ "$enable" -ne "1" ] && { procd_open_instance bulkdata
return 0 [ "$enable" -eq "1" ] && {
}
procd_open_instance
procd_set_param command "$PROG" procd_set_param command "$PROG"
procd_set_param respawn "3" "7" "0" procd_set_param respawn "3" "7" "0"
}
procd_close_instance procd_close_instance
} }