]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - src/initscripts/init.d/collectd
Fixed some minor errors
[people/pmueller/ipfire-2.x.git] / src / initscripts / init.d / collectd
1 #!/bin/sh
2 # Begin $rc_base/init.d/collecd
3
4
5 . /etc/sysconfig/rc
6 . $rc_functions
7
8 eval $(/usr/local/bin/readhash /var/ipfire/main/settings)
9
10 if [ "$RRDLOG" = '' ]; then
11 RRDLOG=/var/log/rrd
12 fi
13
14 case "$1" in
15 start)
16 if [ ! -e /etc/sysconfig/lm_sensors ]; then
17 boot_mesg "Searching for Sensors..."
18 "yes" | /usr/sbin/sensors-detect > /dev/null
19 evaluate_retval
20
21 if [ ! -e /etc/sysconfig/lm_sensors ]; then
22 echo "#No Sensors detected " > /etc/sysconfig/lm_sensors
23 sed -i -e "s|LoadPlugin sensors|#LoadPlugin sensors|g" /etc/collectd.conf
24 fi
25 fi
26
27 if [ ! -e $RRDLOG.bak/ ]; then
28 mkdir $RRDLOG.bak/
29 fi
30
31 /etc/init.d/collectd restore
32
33 boot_mesg -n "Loading Sensor Modules..."
34 for modul in `cat /etc/sysconfig/lm_sensors | grep '^MODULE_' | cut -d"=" -s -f2`; do
35 modprobe $modul > /dev/null 2>&1;
36 if [ ${?} = 0 ]; then
37 boot_mesg -n "$SUCCESS$modul$NORMAL ";
38 else
39 boot_mesg -n "$FAILURE$modul$NORMAL ";
40 fi
41 done
42 boot_mesg;
43 echo_ok;
44
45 boot_mesg "Starting Collection daemon..."
46 /usr/sbin/collectd -C /etc/collectd.conf
47 evaluate_retval
48 ;;
49 stop)
50 /etc/init.d/collectd backup
51 boot_mesg "Stopping Collection daemon..."
52 killproc /usr/sbin/collectd
53 evaluate_retval
54 ;;
55 restart)
56 ${0} stop
57 sleep 1
58 ${0} start
59 ;;
60 backup)
61 boot_mesg "Save rrd files from ramd..."
62 cp -pR $RRDLOG/* $RRDLOG.bak/
63 evaluate_retval
64 ;;
65 restore)
66 if [ -e $RRDLOG.bak ];then
67 boot_mesg "Copying rrd files to ramd..."
68 cp -pR $RRDLOG.bak/* $RRDLOG/
69 fi
70 ;;
71 status)
72 statusproc /usr/sbin/collectd
73 ;;
74
75 *)
76 echo "Usage: $0 {start|stop|restart|status}"
77 exit 1
78 ;;
79 esac
80
81 # End $rc_base/init.d/collectd