aports/community/syncthing/syncthing.initd
Hannes Braun 012be2a118 community/syncthing: improve init scripts
- Timestamps are not required in the output, they are already available
  in the system log.
- The user script needs a supervisor to work properly. (Or needs to run
  in the background.)
2026-02-01 00:27:40 +00:00

15 lines
400 B
Bash

#!/sbin/openrc-run
name=$RC_SVCNAME
supervisor=supervise-daemon
command=/usr/bin/syncthing
command_args="${SYNCTHING_ARGS:---no-browser --no-restart --log-format-timestamp=''}"
command_user="${SYNCTHING_USER:-syncthing}"
output_logger="logger -t '${RC_SVCNAME}' -p daemon.info"
error_logger="logger -t '${RC_SVCNAME}' -p daemon.error"
depend() {
use logger dns net
after firewall
}