Added the ability to enable/disable via a config file; the default is enabled for backwards compatibility. This is an additional service, so running it the same priority as dnsmasq, etc does not make sense. Added USE_PROCD=1 "done" starts at "START=95", so this should start earlier Added STOP=10 to stop syncthing early Compile-tested on: ipq806x, ipq40xx Runtime-tested on: ipq806x, ipq40xx Signed-off-by: Marc Benoit <marcb62185@gmail.com>
32 lines
798 B
Bash
Executable file
32 lines
798 B
Bash
Executable file
#!/bin/sh /etc/rc.common
|
|
|
|
START=90
|
|
STOP=10
|
|
|
|
USE_PROCD=1
|
|
NICEPRIO=19
|
|
|
|
PROG=/usr/bin/syncthing
|
|
|
|
start_service() {
|
|
[ -d /var/syncthing/ ] || mkdir /var/syncthing/
|
|
|
|
local gui_address home enabled
|
|
config_load "syncthing"
|
|
|
|
# The first version had the service enabled by default,
|
|
# so preserving the old behaviour
|
|
config_get_bool enabled syncthing enabled 1
|
|
[ "$enabled" -gt 0 ] || return 0
|
|
|
|
config_get gui_address syncthing gui_address "http://127.0.0.1:8384"
|
|
config_get home syncthing home "/etc/syncthing/"
|
|
|
|
procd_open_instance
|
|
procd_set_param command "$PROG"
|
|
procd_append_param command -gui-address="$gui_address"
|
|
procd_append_param command -home="$home"
|
|
procd_set_param respawn
|
|
procd_set_param nice "$NICEPRIO"
|
|
procd_close_instance
|
|
}
|