blob: a01e42ebd78850ef14180b30ab5986fc98f6c99d (
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
|
#!/sbin/openrc-run
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
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"
}
|