aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/do-xntp
blob: 8c07b57d3ae632c287b3180610cc7c280e247013 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

RRD_BIN=/usr/bin
RRDPAGE=/var/www/time.mattrude.com/rrd
SCRIPTS=/var/www/time.mattrude.com/scripts

cd ${RRDPAGE}
if [ ! $? ]; then exit 1; fi

for X in `cat list-of-systems`
do
	sh ${SCRIPTS}/do-rrd-update ${X}
	if [ ! $? ]; then exit 1; fi
done