summaryrefslogtreecommitdiff
blob: 1db3e52643eae49e232d27f0be7445b6b24c06e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/sbin/runscript
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

depend() {
	need net
	use logger
}

start() {
	ebegin "Starting umurmurd"
	start-stop-daemon --start --exec /usr/bin/umurmurd --pidfile "${UMURMURD_PID}" -- \
		-c "${UMURMURD_CONF}" -p "${UMURMURD_PID}" ${UMURMURD_OPTS}
	eend $?
}

stop() {
	ebegin "Stopping umurmurd"
	start-stop-daemon --stop --pidfile "${UMURMURD_PID}"
	eend $?
}