automating some update scripts
diff --git a/org.eclipse.wtp.releng.webupdatesite/build-home/updateMirrorAll.xml b/org.eclipse.wtp.releng.webupdatesite/build-home/updateMirrorAll.xml
new file mode 100644
index 0000000..6962aa0
--- /dev/null
+++ b/org.eclipse.wtp.releng.webupdatesite/build-home/updateMirrorAll.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="updatesite" default="all" basedir=".">
+
+ <target name="init">
+ <ant antfile="init.xml"/>
+ </target>
+
+ <target name="all" depends="init">
+ <ant antfile="features-wtp.xml" />
+ <ant antfile="features-jsf.xml" />
+ <ant antfile="features-jpa.xml" />
+
+ <!-- make sure all can "read" (important for quicker http access, esp. when Eclipse.org overloaded) -->
+ <chmod verbose="true" perm="o+rx" type="both">
+ <fileset dir="${localUpdateSitePath}" />
+ </chmod>
+
+ <!-- needs work .. indexer doesn't work well from this ant script (needs paths fixed up)
+ <ant antfile="indexer.xml">
+ <property name="pluginJarPath"
+ location="${localUpdateSitePath}" />
+ </ant>
+ -->
+ </target>
+
+</project>
+