blob: 7ab26aa2ab3441c480a92d848ab60d8a2e13f415 (
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
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
DAEMON="/usr/bin/monkey"
CONFFILE="/etc/monkey/monkey.conf"
depend() {
use net
}
start() {
ebegin "Starting monkey"
start-stop-daemon --start --exec "${DAEMON}" -- "-D" "${MONKEY_ARGS}" >/dev/null
eend $?
}
stop() {
ebegin "Stopping monkey"
local PORT=$(awk '/^ *Port/ { print $2 }' "${CONFFILE}")
local PIDFILE=$(awk '/^ *PidFile/ { print $2 }' "${CONFFILE}")
PIDFILE="${PIDFILE}"."${PORT}"
start-stop-daemon --stop --quiet --pidfile "${PIDFILE}"
eend $?
}
|