luci/applications/luci-statistics/root/etc/init.d/luci_statistics

21 lines
519 B
Text
Raw Normal View History

#!/bin/sh /etc/rc.common
2008-06-02 01:49:51 +00:00
START=79
start() {
2008-06-02 01:49:51 +00:00
### 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
2008-06-02 01:49:51 +00:00
### create config
mkdir -p /var/etc
/usr/bin/stat-genconfig > /var/etc/collectd.conf
2008-06-02 01:49:51 +00:00
### prepare rrdimg directory
if [ ! -L /www/rrdimg ]; then
imagepath="$(uci get luci_statistics.rrdtool.image_path)"
ln -s ${imagepath:-/tmp/rrdimg}/ /www/rrdimg
fi
}