net-voip/murmur: remove unused file

Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/32321
Signed-off-by: Kenton Groombridge <concord@gentoo.org>
This commit is contained in:
Michael Mair-Keimberger
2023-08-15 14:15:01 +02:00
committed by Kenton Groombridge
parent 0d45bc5c25
commit 1085075a02

View File

@@ -1,25 +0,0 @@
#!/sbin/openrc-run
pidfile="/run/murmur/murmur.pid"
command="/usr/bin/murmurd"
command_args="-ini \"${MURMUR_CONF}\""
start_stop_daemon_args="-u \"${MURMUR_USER}\" --env HOME=\"${MURMUR_HOME}\" --wait 20"
extra_started_commands="reload"
depend() {
need localmount net
use dbus logger
after bootmisc mysql
}
start_pre() {
checkpath -q -d -o ${MURMUR_USER} ${pidfile%/*}
}
reload() {
ebegin "Reloading Murmur"
start-stop-daemon --signal HUP --pidfile "${pidfile}" \
--exec ${command}
eend $?
}