summaryrefslogtreecommitdiff
blob: 29b2f9d23a0ffe5ac273adec36676c06fd922a77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/sbin/runscript

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 -d -o ${MURMUR_USER} ${pidfile%/*}
}

reload() {
	ebegin "Reloading Murmur"
	start-stop-daemon --signal HUP --pidfile "${pidfile}" \
		--exec ${command}
	eend $?
}