luci/applications/luci-statistics/root/etc/init.d/luci_statistics
Jo-Philipp Wich 0543ad6f4f * luci/app/statistics:
- build datatree from rrd directory structure, allows "virtual" plugins
	- flush index cache on statistics reload
	- whitespace cleanup in config generator
2008-10-29 03:59:37 +00:00

31 lines
759 B
Bash
Executable file

#!/bin/sh /etc/rc.common
START=79
start() {
### replace shipped config with symlink
if [ ! -L /etc/collectd.conf ]; then
test -f /etc/collectd.conf && mv /etc/collectd.conf /etc/collectd.conf.bak
ln -s /var/etc/collectd.conf /etc/collectd.conf
fi
### create config
mkdir -p /var/etc
/usr/bin/stat-genconfig > /var/etc/collectd.conf
### prepare rrdimg directory
if [ ! -L /www/rrdimg ]; then
imagepath="$(uci get luci_statistics.rrdtool.image_path)"
ln -s ${imagepath:-/tmp/rrdimg}/ /www/rrdimg
fi
### flush LuCI index cache
test -f /var/luci-indexcache && rm /var/luci-indexcache
}
restart() {
### regenerate config / prepare environment
start
### restart collectd
/etc/init.d/collectd restart
}