mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-19 20:52:22 +02:00
16 lines
387 B
Bash
16 lines
387 B
Bash
#!/sbin/openrc-run
|
|
|
|
name=$RC_SVCNAME
|
|
command=/usr/bin/syncthing
|
|
command_args="${SYNCTHING_ARGS:---no-browser}"
|
|
command_user="${SYNCTHING_USER:-syncthing}"
|
|
pidfile=/run/${RC_SVCNAME}.pid
|
|
command_background=yes
|
|
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
|
|
}
|