mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-16 12:45:18 +03:00
Added murmur-compat package containing symlinks for legacy murmur locations Co-authored-by: Matthias Ahouansou <matthias@ahouansou.cz>
17 lines
339 B
Bash
17 lines
339 B
Bash
#!/sbin/openrc-run
|
|
|
|
description="Mumble VoIP Server"
|
|
command="/usr/bin/${RC_SVCNAME}"
|
|
command_args="-ini ${INI_CONFIG:-/etc/${RC_SVCNAME}.ini}"
|
|
pidfile="/var/run/${RC_SVCNAME}.pid"
|
|
|
|
depend() {
|
|
need localmount net
|
|
after firewall
|
|
}
|
|
|
|
start_pre() {
|
|
checkpath -o murmur:murmur -f "$pidfile"
|
|
}
|
|
|
|
# uses the openrc templates for start()/stop()
|