summaryrefslogtreecommitdiff
blob: 4a61c8308eb1aabb728a13c4c55ba80b6a79c0ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/sbin/runscript
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

start() {
	ebegin "Starting God Process Monitor"
	start-stop-daemon --start --pidfile /var/run/god.pid --exec /usr/bin/god -- -P /var/run/god.pid
	eend $?
}

stop() {
	ebegin "Stopping God Process Monitor"
	start-stop-daemon --stop --pidfile /var/run/god.pid
	eend $?
}