projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
create cgi script after rrd archives
[openwrt.git]
/
openwrt
/
package
/
rrdcollect
/
files
/
rrdcollect.init
diff --git
a/openwrt/package/rrdcollect/files/rrdcollect.init
b/openwrt/package/rrdcollect/files/rrdcollect.init
index
dafb462
..
f9ee8bc
100644
(file)
--- a/
openwrt/package/rrdcollect/files/rrdcollect.init
+++ b/
openwrt/package/rrdcollect/files/rrdcollect.init
@@
-3,14
+3,21
@@
BIN=rrdcollect
DEFAULT=/etc/default/$BIN
RUN_D=/var/run
BIN=rrdcollect
DEFAULT=/etc/default/$BIN
RUN_D=/var/run
-RRA_D=/var/lib/rra
PID_F=$RUN_D/$BIN.pid
PID_F=$RUN_D/$BIN.pid
+LIB_D=/var/lib/rrdcollect
+CGI_S=$LIB_D/rrd.cgi
+IMG_D=$LIB_D/img
+RRD_D=$LIB_D/rrd
+RRD_F=$(find $RRD_D -name "*.rrd" 2>/dev/null)
[ -f $DEFAULT ] && . $DEFAULT
case $1 in
start)
mkdir -p $RUN_D
[ -f $DEFAULT ] && . $DEFAULT
case $1 in
start)
mkdir -p $RUN_D
- mkdir -p $RRA_D
+ mkdir -p $IMG_D
+ mkdir -p $RRD_D
+ [ -n "$RRD_F" ] || /usr/bin/rrd.sh init
+ [ -x $CGI_S ] || /usr/bin/rrd.sh cgi
$BIN $OPTIONS
;;
stop)
$BIN $OPTIONS
;;
stop)
This page took
0.025535 seconds
and
4
git commands to generate.