mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-22 22:21:19 +02:00
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
20 lines
345 B
Plaintext
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()
|
|
|
|
|