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

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 $?
}