--- /dev/null
+#!/bin/bash
+#
+# Build a mrconfig for the needed modules.
+#
+
+# Parameters
+GIT="git.sarava.org"
+URL="https://$GIT/?a=project_index"
+CWD="`dirname $0`"
+
+# Create a new config
+echo "" > $CWD/.mrconfig
+
+# Fetch repository list and updtate mrconfig
+curl --stderr - $URL | grep "^puppet-" | while read module; do
+ folder="`echo $module | sed -e 's/^puppet-//'`"
+ folder="`basename $folder .git`"
+
+ echo "[$folder]" >> $CWD/.mrconfig
+ echo " checkout = git clone git://$GIT/$module $folder" >> $CWD/.mrconfig
+done