Get Git roots from the PMI.
diff --git a/commits/batch/git-roots.php b/commits/batch/git-roots.php
index 1581734..415534b 100644
--- a/commits/batch/git-roots.php
+++ b/commits/batch/git-roots.php
@@ -1,4 +1,19 @@
 <?php 
+#/*******************************************************************************
+# * Copyright (c) 2013 Eclipse Foundation and others.
+# * All rights reserved. This program and the accompanying materials
+# * are made available under the terms of the Eclipse Public License v1.0
+# * which accompanies this distribution, and is available at
+# * http://www.eclipse.org/legal/epl-v10.html
+# *
+# * Contributors:
+# *    Wayne Beaton (Eclipse Foundation) - Initial implementation
+# *******************************************************************************/
+
+/*
+ * Pull the git repo information from the PMI. Format it in the manner expected
+ * by the ./git-export.php script
+ */
 $json = file_get_contents('http://projects.eclipse.org/json/repos/git');
 foreach(json_decode($json) as $project => $repos) {
 	foreach ($repos as $repo) {
diff --git a/commits/batch/run-batch.sh b/commits/batch/run-batch.sh
index 11c2373..13ea631 100755
--- a/commits/batch/run-batch.sh
+++ b/commits/batch/run-batch.sh
@@ -36,8 +36,7 @@
 
 # git
 echo '- Git ' `date`
-/usr/bin/wget http://www.eclipse.org/projects/web-api/roots-generator.php?type=git -O - 2> /dev/null | ./git-extract.php | ./git-parse.php | ./chunk.pl ./insert-batch.pl
-
+php ./git-roots.php | php ./git-extract.php | php ./git-parse.php | ./chunk.pl ./insert-batch.pl
 
 echo '- Renaming ' `date`
 # finish up after the full batch
@@ -49,6 +48,6 @@
 
 echo '- Rebuilding the query tables ' `date`
 # Rebuild the query tables.
-/usr/bin/mysql --user=dashboard --password=`cat /var/lib/dashboard/DBPASSWORD.txt` dashboard < create_query_tables.sql 
+/usr/bin/mysql --user=dashboard --password=`cat dbpassconfig` dashboard < create_query_tables.sql 
 
 echo '-Done!' `date`