script:
- ./configure --prefix=/opt/rrdtool-master
- make
+ - cd tests && ./alltests /opt/rrdtool-master/bin/rrdtool
- sudo make install
- /opt/rrdtool-master/bin/rrdtool
- /opt/rrdtool-master/share/rrdtool/examples/4charts.pl
- - cd tests && ./alltests /opt/rrdtool-master/bin/rrdtool
# add 50 values to
N=10
for T in $(seq 1300000020 60 1300003020) ; do
- rrdtool update ${BASE}a.rrd --template a $T:$N
+ $RRDTOOL update ${BASE}a.rrd --template a $T:$N
let N=$N+10
done
# add 50 values to
N=10
for T in $(seq 1300000020 60 1300003020) ; do
- rrdtool update ${BASE}a.rrd --template a:b:c $T:$N:$((10000+$N)):$((20000+$N))
+ $RRDTOOL update ${BASE}a.rrd --template a:b:c $T:$N:$((10000+$N)):$((20000+$N))
let N=$N+10
done