mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-27 20:31:40 +01:00
13 lines
227 B
Plaintext
13 lines
227 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
name="$SVCNAME"
|
|
pidfile="/var/run/$SVCNAME.pid"
|
|
command="/usr/sbin/$SVCNAME"
|
|
command_args="-ii${CSYNC2_OPTS:+ $CSYNC2_OPTS}"
|
|
command_background="yes"
|
|
|
|
depend() {
|
|
need net localmount
|
|
after firewall
|
|
}
|