aboutsummaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-01-27 16:04:31 -0200
committerSilvio Rhatto <rhatto@riseup.net>2014-01-27 16:04:31 -0200
commit431f716381a6be6d7bd092acc2b33540ea6b766b (patch)
tree9b0f254e8b4b7542d91e27e74ee34e64fc7ec2e9 /misc
parent6733898a5e2a5ed38c89037767c848f5206351c4 (diff)
downloadpuppet-bootstrap-431f716381a6be6d7bd092acc2b33540ea6b766b.tar.gz
puppet-bootstrap-431f716381a6be6d7bd092acc2b33540ea6b766b.tar.bz2
Vagrant compatibility
Diffstat (limited to 'misc')
-rwxr-xr-xmisc/mrconfig.sh27
1 files changed, 27 insertions, 0 deletions
diff --git a/misc/mrconfig.sh b/misc/mrconfig.sh
new file mode 100755
index 0000000..043ea74
--- /dev/null
+++ b/misc/mrconfig.sh
@@ -0,0 +1,27 @@
+#!/bin/bash
+#
+# Build a mrconfig for the needed modules.
+#
+
+# Parameters
+GIT="git.sarava.org"
+URL="https://$GIT/?a=project_index"
+CWD="`pwd`"
+WORK="`dirname $0`/.."
+
+# Create a new config
+cd $WORK
+rm -f .mrconfig
+touch .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 "Processing $folder..."
+ mr config puppet/modules/$folder checkout="git clone git://$GIT/$module $folder"
+done
+
+# Teardown
+cd $CWD