aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/do-build-index
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/do-build-index')
-rwxr-xr-xscripts/do-build-index21
1 files changed, 21 insertions, 0 deletions
diff --git a/scripts/do-build-index b/scripts/do-build-index
new file mode 100755
index 0000000..b868fe6
--- /dev/null
+++ b/scripts/do-build-index
@@ -0,0 +1,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