transmission: fix command param issue and use default respawn settings
Signed-off-by: Richard Yu <yurichard3839@gmail.com>
This commit is contained in:
parent
48af6b5bfb
commit
144e7df270
2 changed files with 3 additions and 3 deletions
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||
|
||||
PKG_NAME:=transmission
|
||||
PKG_VERSION:=2.94
|
||||
PKG_RELEASE:=6
|
||||
PKG_RELEASE:=7
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
||||
PKG_SOURCE_URL:=@GITHUB/transmission/transmission-releases/master
|
||||
|
|
|
@ -114,12 +114,12 @@ transmission() {
|
|||
|
||||
procd_open_instance
|
||||
procd_set_param command "/usr/bin/transmission-daemon"
|
||||
procd_append_param command "-f --log-error -g $config_dir"
|
||||
procd_append_param command -f --log-error -g "$config_dir"
|
||||
procd_set_param user "$user"
|
||||
procd_set_param group "$group"
|
||||
procd_set_param nice "$nice"
|
||||
procd_set_param stderr 1
|
||||
procd_set_param respawn retry=60
|
||||
procd_set_param respawn
|
||||
|
||||
if [ -z "$USE" ]; then
|
||||
procd_set_param limits core="0 0"
|
||||
|
|
Loading…
Reference in a new issue