]> gitweb.fluxo.info Git - puppet-bootstrap.git/commitdiff
Adding mrconfig script
authorSilvio Rhatto <rhatto@riseup.net>
Mon, 27 Jan 2014 14:06:12 +0000 (12:06 -0200)
committerSilvio Rhatto <rhatto@riseup.net>
Mon, 27 Jan 2014 14:06:12 +0000 (12:06 -0200)
mrconfig.sh [new file with mode: 0755]

diff --git a/mrconfig.sh b/mrconfig.sh
new file mode 100755 (executable)
index 0000000..dc4959b
--- /dev/null
@@ -0,0 +1,21 @@
+#!/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