aports/community/mumble/murmur.initd
Sören Tempel 95dd108e95 community/mumble: rename mumble-server back to murmurd
Since upstream hasn't fully adjusting everything (man pages, ini files,
…) for the new name yet this might confuse end users. Other
distributions therefore install mumble-server under the old name
(murmurd). With this commit we do the same but stay forwards-compatible
with future releases by also providing a mumble-server -> murmud
symlink.

See https://github.com/mumble-voip/mumble/issues/5436
2022-01-24 18:39:52 +00:00

20 lines
345 B
Plaintext

#!/sbin/openrc-run
depend() {
need localmount net
after firewall
}
description="Mumble VoIP Server"
command="/usr/bin/murmurd"
command_args="-ini ${INI_CONFIG:-/etc/murmur.ini}"
pidfile="/var/run/murmur/murmur.pid"
start_pre() {
checkpath --owner murmur:murmur --directory ${pidfile%/*}
}
# uses the openrc templates for start()/stop()