From: Arne Fitzennreiter Date: Wed, 22 Oct 2008 17:19:55 +0000 (+0200) Subject: collectd initskript detects and enable/disble thermal and swap plugin X-Git-Tag: v2.3-rc1~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4d7ee3d8782589a62d872aa2d6ab8e8559a76f54;p=people%2Fstevee%2Fipfire-2.x.git collectd initskript detects and enable/disble thermal and swap plugin --- diff --git a/src/initscripts/init.d/collectd b/src/initscripts/init.d/collectd index 2a0cd16663..52ce4b2b33 100644 --- a/src/initscripts/init.d/collectd +++ b/src/initscripts/init.d/collectd @@ -20,10 +20,23 @@ case "$1" in if [ ! -e /etc/sysconfig/lm_sensors ]; then echo "#No Sensors detected " > /etc/sysconfig/lm_sensors - sed -i -e "s|LoadPlugin sensors|#LoadPlugin sensors|g" /etc/collectd.conf + sed -i -e "s|^LoadPlugin sensors|#LoadPlugin sensors|g" /etc/collectd.conf fi fi + + if [ ! -e /sys/class/thermal/thermal_zone0 ]; then + sed -i -e "s|^LoadPlugin thermal|#LoadPlugin thermal|g" /etc/collectd.conf + else + sed -i -e "s|^#LoadPlugin thermal|LoadPlugin thermal|g" /etc/collectd.conf + fi + if [ "$(swapon -s | wc -l)" == "1" ]; then + sed -i -e "s|^LoadPlugin swap|#LoadPlugin swap|g" /etc/collectd.conf + else + sed -i -e "s|^#LoadPlugin swap|LoadPlugin swap|g" /etc/collectd.conf + fi + + boot_mesg -n "Loading Sensor Modules..." for modul in `cat /etc/sysconfig/lm_sensors | grep '^MODULE_' | cut -d"=" -s -f2`; do modprobe $modul > /dev/null 2>&1;