aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/do-build-index
blob: b868fe6c321b996f11c6f56b56717ec2f963d5af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

POOLPAGE=/usr/local/www/data/status
TEMPLATESDIR=/usr/local/www/data/scripts/templates

cd $POOLPAGE
cat /dev/null > out.template

for X in `cat /usr/local/www/data/rrd/list-of-systems`
do
	sed -e s/POOL/$X/g $TEMPLATESDIR/template >> out.template
done

for X in `cat /usr/local/www/data/rrd/list-of-systems`
do
	sed -e s/POOL/$X/g $TEMPLATESDIR/template2 >> out.template
done

sync
cat $TEMPLATESDIR/index-head out.template $TEMPLATESDIR/index-tail > index.html
rm -f out.template