mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-24 03:35:38 +03:00
14 lines
186 B
Bash
14 lines
186 B
Bash
#!/sbin/openrc-run
|
|
|
|
name="$SVCNAME"
|
|
command="/usr/sbin/$SVCNAME"
|
|
command_args="start"
|
|
command_background="yes"
|
|
|
|
pidfile="/run/riak-cs/$name.pid"
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|
|
|