Merge pull request #22767 from efahl/issue-22760
syncthing: fix duplicate command line parameters on service
This commit is contained in:
commit
ec0ea77927
|
@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=syncthing
|
PKG_NAME:=syncthing
|
||||||
PKG_VERSION:=1.24.0
|
PKG_VERSION:=1.24.0
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=2
|
||||||
|
|
||||||
PKG_SOURCE:=syncthing-source-v$(PKG_VERSION).tar.gz
|
PKG_SOURCE:=syncthing-source-v$(PKG_VERSION).tar.gz
|
||||||
PKG_SOURCE_URL:=https://github.com/syncthing/syncthing/releases/download/v$(PKG_VERSION)
|
PKG_SOURCE_URL:=https://github.com/syncthing/syncthing/releases/download/v$(PKG_VERSION)
|
||||||
|
|
|
@ -14,7 +14,7 @@ config_cb() {
|
||||||
local option="$1"
|
local option="$1"
|
||||||
local value="$2"
|
local value="$2"
|
||||||
case $option in
|
case $option in
|
||||||
enabled|macprocs|nice|user|logfile)
|
enabled|gui_address|home|logfile|macprocs|nice|user)
|
||||||
eval $option=$value
|
eval $option=$value
|
||||||
;;
|
;;
|
||||||
debug)
|
debug)
|
||||||
|
|
Loading…
Reference in New Issue