#!/sbin/runscript # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ start() { ebegin "Starting God Process Monitor" start-stop-daemon --start --pidfile /var/run/god.pid --exec /usr/bin/god -- -P /var/run/god.pid -c /etc/god.conf eend $? } stop() { ebegin "Stopping God Process Monitor" start-stop-daemon --stop --pidfile /var/run/god.pid eend $? }