summaryrefslogtreecommitdiff
blob: fe8d70f6fcec2d9324400e33a1ce32fddfefe3b3 (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
26
27
28
29
30
31
#!/sbin/runscript
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

PIDFILE=/var/run/gmetad-python.pid

depend() {
	need net
	after ntp-client ntpd
}

start() {
	ebegin "Starting GANGLIA gmetad-python: "
	start-stop-daemon \
		--start --quiet \
		--exec /usr/bin/gmetad.py \
		--pidfile ${PIDFILE} \
		-- \
		-p ${PIDFILE}
	eend $? "Failed to start gmetad-python"
}

stop() {
	ebegin "Shutting down GANGLIA gmetad-python: "
	start-stop-daemon \
		--stop --quiet \
		--pidfile ${PIDFILE} \
		--exec /usr/bin/gmetad.py
	eend $? "Failed to stop gmetad-python"
}