ZhenYu 36837b9169 luci-app-verysync: add button (#2569)
* luci-app-verysync: add button

* fix compatibility with LuCI2

* improve translation

* improve translation

* fix mistake
2019-12-25 09:10:43 +08:00

18 lines
398 B
Bash
Executable File

#!/bin/sh /etc/rc.common
START=50
STOP=10
start() {
local enabled="$(uci get verysync.config.enabled)"
local port="$(uci get verysync.config.port)"
stop
[ "${enabled}" == "1" ] || exit 0
export HOME="/root/"
verysync -gui-address="0.0.0.0:${port}" -logfile="/var/log/verysync.log" -home="/etc/verysync/" -no-browser >/dev/null 2>&1 &
}
stop() {
kill -9 `pgrep verysync` >/dev/null 2>&1
}