summaryrefslogtreecommitdiff
blob: e3ca111eb90709567ee5b53439de46d01f1ebcc6 (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
26
#!/sbin/runscript
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

DAEMON="/usr/sbin/monkey"
CONFFILE="/etc/monkeyd/monkey.conf"

depend() {
	use net
}

start() {
	ebegin "Starting monkeyd"
	local PIDFILE=$(awk '/^ *PidFile/ { print $2 }' "${CONFFILE}")
	mkdir -p $(dirname ${PIDFILE})
	start-stop-daemon --start --exec "${DAEMON}" -- "-D" "${MONKEY_ARGS}" >/dev/null
	eend $?
}

stop() {
	ebegin "Stopping monkeyd"
	local PIDFILE=$(awk '/^ *PidFile/ { print $2 }' "${CONFFILE}")
	start-stop-daemon --stop --quiet --pidfile "${PIDFILE}"
	eend $?
}