forked from shawn-sterling/graphios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
graphios.init
69 lines (59 loc) · 1.2 KB
/
graphios.init
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#! /bin/bash
#
# simple init script for graphios
#
#
# chkconfig: 345 99 01
# description: graphios nagios -> graphite script
#
# File : graphios
# Source function library.
. /etc/init.d/functions
# Source networking configuration.
. /etc/sysconfig/network
# Check that networking is up.
[ "$NETWORKING" = "no" ] && exit 0
prog="/opt/nagios/bin/graphios.py"
# or use the command line options:
#prog="/opt/nagios/bin/graphios.py --log-file=/dir/mylog.log --spool-directory=/dir/my/sool"
GRAPHIOS_USER="nagios"
RETVAL=0
start () {
echo -n "Starting $prog"
/usr/bin/sudo -u $GRAPHIOS_USER "$prog" &
RETVAL=$?
[ $RETVAL -eq 0 ] && success || failure
echo
}
stop () {
echo -n "Stopping $prog"
killproc graphios.py
RETVAL=$?
[ $RETVAL -eq 0 ] && success || failure
echo
}
restart () {
stop
start
}
# See how we are called.
case "$1" in
start)
start
;;
stop)
stop
;;
restart|reload)
restart
;;
status)
status $prog
RETVAL=$?
;;
*)
echo "Usage: service graphios {start|stop|restart|reload}"
RETVAL=2
;;
esac
exit $RETVAL