mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-14 21:12:59 +02:00
changed the output of smartenables if devices not support smart git-svn-id: http://svn.ipfire.org/svn/ipfire/branches/2.1/trunk@1194 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
53 lines
1.0 KiB
Bash
53 lines
1.0 KiB
Bash
#!/bin/sh
|
|
# Begin $rc_base/init.d/collecd
|
|
|
|
|
|
. /etc/sysconfig/rc
|
|
. $rc_functions
|
|
|
|
case "$1" in
|
|
start)
|
|
boot_mesg "Starting Collection daemon..."
|
|
/usr/sbin/collectd -C /etc/collectd.conf
|
|
evaluate_retval
|
|
# for disk in `kudzu -qps -c HD | grep device: | cut -d" " -f2 | sort | uniq`; do boot_mesg "Bringing up hddtemp daemon for $disk ..."; /usr/sbin/hddtemp $disk -d -l localhost; evaluate_retval; done
|
|
boot_mesg "Bringing up mbmon daemon..."
|
|
/usr/bin/mbmon -P 411 -r
|
|
if [ ${?} = 0 ]; then
|
|
echo_ok;
|
|
fi
|
|
;;
|
|
|
|
stop)
|
|
# boot_mesg "Stopping mbmon daemon..."
|
|
# killproc /usr/bin/mbmon
|
|
# if [ ${?} = 0 ]; then
|
|
# echo_ok;
|
|
# fi
|
|
# boot_mesg "Stopping hddtemp daemon..."
|
|
# killproc /usr/sbin/hddtemp
|
|
# evaluate_retval
|
|
boot_mesg "Stopping Collection daemon..."
|
|
killproc /usr/sbin/collectd
|
|
evaluate_retval
|
|
;;
|
|
|
|
restart)
|
|
$0 stop
|
|
sleep 1
|
|
$0 start
|
|
evaluate_retval
|
|
;;
|
|
|
|
status)
|
|
statusproc /usr/sbin/collectd
|
|
;;
|
|
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart|status}"
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
# End $rc_base/init.d/collectd
|