#!/usr/bin/env sh . ../../settings FIRSTFILE=`ls rrd/|head -n 1` if [ `$BINPATH/rrdtool info rrd/$FIRSTFILE|grep -c ABSOLUTE` -gt 0 ]; then echo "old-style databases found, update necessary."; # update databases if needed # FILES=`ls rrd` for nn in $FILES; do echo "updating $nn" $BINPATH/rrdtool tune rrd/$nn -d racc:COUNTER -d wacc:COUNTER -d rbyt:COUNTER -d wbyt:COUNTER done fi if [ `$BINPATH/rrdtool info rrd/$FIRSTFILE|grep max|grep -c NaN` -gt 0 ]; then echo "old-style databases found, update necessary."; # update databases if needed # FILES=`ls rrd` for nn in $FILES; do echo "updating $nn" $BINPATH/rrdtool tune rrd/$nn -a racc:50000 -a wacc:50000 -a rbyt:50000000 -a wbyt:50000000 done fi echo "rebuilding webpage..." cd ../.. ./makeindex.pl
hotsanic |
Subversion Repositories: |
Line No. | Rev | Author | Line |
---|