Termux service love

This commit is contained in:
Geoffrey Frogeye 2017-09-17 11:36:17 +00:00
parent 75462e7e5d
commit caf49db140
7 changed files with 95 additions and 5 deletions

61
termux/services/syncthing Executable file
View file

@ -0,0 +1,61 @@
#!/data/data/com.termux/files/usr/bin/bash
#
# Start Syncthing synchronization service
#
PIDFILE="$HOME/.local/run/syncthing.pid"
LOGFILE="$HOME/.local/log/syncthing.log"
start() {
printf "Starting Syncthing: "
sudo start-stop-daemon -p "$PIDFILE" -x syncthing -S -b -N 5 -m -- -logfile="$LOGFILE"
termux-toast "Started Syncthing"
echo "OK"
}
stop() {
printf "Stopping Syncthing: "
sudo start-stop-daemon -p "$PIDFILE" -x syncthing -K
termux-toast "Stopped Syncthing"
echo "OK"
}
status() {
printf "Syncthing: "
PID="$(sudo cat "$PIDFILE")"
if [[ -n "$PID" && -d "/proc/$PID" ]]
then
echo "running"
else
echo "stopped"
fi
}
log() {
sudo tail "$@" "$LOGFILE"
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart|reload)
stop
start
;;
status)
status
;;
log)
shift
log "$@"
;;
*)
echo "Usage: $0 {start|stop|restart|status|log}"
exit 1
esac
exit $?