1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-16 12:45:18 +03:00
aports/community/mumble/mumble-server.initd
Z c4ed985216 community/mumble: rename murmur sub-package to mumble-server
Added murmur-compat package containing symlinks for legacy murmur locations

Co-authored-by: Matthias Ahouansou <matthias@ahouansou.cz>
2025-05-12 09:35:24 +00:00

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()