]> git.ipfire.org Git - ipfire-2.x.git/blame - src/initscripts/system/collectd
unbound: Drop certificates for local control connection
[ipfire-2.x.git] / src / initscripts / system / collectd
CommitLineData
a332b303
CS
1#!/bin/sh
2# Begin $rc_base/init.d/collecd
3
a332b303
CS
4. /etc/sysconfig/rc
5. $rc_functions
6
1c163c04
CS
7eval $(/usr/local/bin/readhash /var/ipfire/main/settings)
8
f6b79dd2
CS
9if [ "$RRDLOG" = '' ]; then
10 RRDLOG=/var/log/rrd
11fi
12
a332b303
CS
13case "$1" in
14 start)
ee3dec50 15 if use_ramdisk; then
6146d190
MT
16 boot_mesg "Mounting RRD ramdisk..."
17 mount_ramdisk "${RRDLOG}"
18 evaluate_retval
c4a451ee 19 fi
c4a451ee 20
366aa0cb 21 # If run from init and collectd alrady started then exit silent
f950f258
AF
22 if [ "$(basename $0)" != "collectd" ]; then
23 if [ "$(ps -A | grep " collectd$")" != "" ]; then
24 exit 0
25 fi
26 fi
27
dc652b88
MT
28 # ARM does not support to scan for sensors. In that case,
29 # we create an empty configuration file.
30 machine=$(uname -m)
31 if [ "${machine:0:3}" = "arm" ]; then
32 touch /etc/sysconfig/lm_sensors
33 fi
c8dfbfab
AF
34 if [ "${machine:0:7}" = "aarch64" ]; then
35 touch /etc/sysconfig/lm_sensors
36 fi
dc652b88 37
a68a74cb 38 # At first run search for sensors with sensors-detect
a3f2742f 39 if [ ! -e /etc/sysconfig/lm_sensors ]; then
1c163c04 40 boot_mesg "Searching for Sensors..."
5b55f2f8 41
888541fc 42 # pre scan and try to load modules
5b55f2f8 43 "yes" | /usr/sbin/sensors-detect > /dev/null
888541fc 44 if [ -e /etc/sysconfig/lm_sensors ]; then
dd6c9bb9 45
888541fc 46 # Module load
dd6c9bb9
AF
47 . /etc/sysconfig/lm_sensors
48 for modul in $BUS_MODULES $HWMON_MODULES ; do
888541fc
AF
49 modprobe $modul > /dev/null 2>&1;
50 done
51 fi
5b55f2f8 52
888541fc 53 # Final scan
1c163c04
CS
54 "yes" | /usr/sbin/sensors-detect > /dev/null
55 evaluate_retval
56
57 if [ ! -e /etc/sysconfig/lm_sensors ]; then
58 echo "#No Sensors detected " > /etc/sysconfig/lm_sensors
1c163c04 59 fi
a3f2742f
AF
60 fi
61
f950f258 62 # Load sensor modules only first start
366aa0cb
AF
63 if [ ! -e /var/lock/sensors_modules ]; then
64 touch /var/lock/sensors_modules
dd6c9bb9 65
f950f258 66 boot_mesg -n "Loading Sensor Modules: "
dd6c9bb9
AF
67 . /etc/sysconfig/lm_sensors
68 for modul in $BUS_MODULES $HWMON_MODULES ; do
f950f258
AF
69 modprobe $modul > /dev/null 2>&1;
70 if [ ${?} = 0 ]; then
71 boot_mesg -n "$SUCCESS$modul$NORMAL ";
72 else
73 boot_mesg -n "$WARNING$modul$NORMAL ";
74 fi
75 done
76 boot_mesg;
77 echo_ok;
78 fi
a3f2742f 79
a68a74cb 80 # Enable sensors plugin if sensors found
28ec28bc 81 if [ "$( sensors 2>&1 | grep 'No sensors found!' | wc -l )" == "1" ]; then
a68a74cb
AF
82 sed -i -e "s|^LoadPlugin sensors|#LoadPlugin sensors|g" /etc/collectd.conf
83 else
84 sed -i -e "s|^#LoadPlugin sensors|LoadPlugin sensors|g" /etc/collectd.conf
85 fi
86
87 # Enable thermal plugin if thermal_zone found
88 if [ ! -e /sys/class/thermal/thermal_zone0 ]; then
366aa0cb 89 sed -i -e 's|^include "/etc/collectd.thermal"$|#include "/etc/collectd.thermal"|g' /etc/collectd.conf
a68a74cb 90 else
366aa0cb 91 sed -i -e 's|^#include "/etc/collectd.thermal"$|include "/etc/collectd.thermal"|g' /etc/collectd.conf
a68a74cb 92 fi
6cc7c2a3
AF
93
94 # Enable cpufreq plugin if cpufreq found
79bcc6f7 95 if [ ! -e /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq ]; then
6cc7c2a3
AF
96 sed -i -e "s|^LoadPlugin cpufreq|#LoadPlugin cpufreq|g" /etc/collectd.conf
97 else
98 sed -i -e "s|^#LoadPlugin cpufreq|LoadPlugin cpufreq|g" /etc/collectd.conf
99 fi
a68a74cb
AF
100
101 # Enable swap plugin if swap found
893ef99e 102 if [ "$(swapon -s | wc -l)" == "0" ]; then
a68a74cb
AF
103 sed -i -e "s|^LoadPlugin swap|#LoadPlugin swap|g" /etc/collectd.conf
104 else
105 sed -i -e "s|^#LoadPlugin swap|LoadPlugin swap|g" /etc/collectd.conf
106 fi
08215cb5
AF
107
108 # sync after config update...
109 sync
a68a74cb 110
15eb7e0a
AF
111 if [ $(date +%Y) -gt 2011 ]; then
112 boot_mesg "Starting Collection daemon..."
113 /usr/sbin/collectd -C /etc/collectd.conf
114 evaluate_retval
115 else
116 boot_mesg "collectd: cannot start with incorrect time ($(date))."
117 echo_warning;
118 fi
a332b303 119 ;;
a332b303 120 stop)
4c89f6d4
AF
121 boot_mesg "Stopping Collection daemon..."
122 killproc /usr/sbin/collectd
123 evaluate_retval
6146d190
MT
124
125 # Umount the ramdisk (if any)
126 umount_ramdisk "${RRDLOG}"
a332b303 127 ;;
a332b303 128 restart)
1c163c04 129 ${0} stop
a332b303 130 sleep 1
1c163c04
CS
131 ${0} start
132 ;;
a332b303
CS
133 status)
134 statusproc /usr/sbin/collectd
135 ;;
136
08729f79
MT
137 backup)
138 # Backup all data if ramdisk is used
139 if mountpoint "${RRDLOG}" &>/dev/null; then
140 ${0} restart
141 fi
142 ;;
143
a332b303 144 *)
08729f79 145 echo "Usage: $0 {start|stop|restart|status|backup}"
a332b303
CS
146 exit 1
147 ;;
148esac
149
150# End $rc_base/init.d/collectd