blob: 6ec67e11435cfe26d962df551bffa55dbcd5b1cd (
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/openrc-run
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
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 $?
}
|