diff options
Diffstat (limited to 'testing/monkey/monkey.initd')
| -rw-r--r-- | testing/monkey/monkey.initd | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/testing/monkey/monkey.initd b/testing/monkey/monkey.initd new file mode 100644 index 0000000000..7ab26aa2ab --- /dev/null +++ b/testing/monkey/monkey.initd @@ -0,0 +1,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 $? +} |
