aboutsummaryrefslogtreecommitdiff
path: root/bin/mrconfig
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2020-10-01 15:02:47 -0300
committerSilvio Rhatto <rhatto@riseup.net>2020-10-01 15:02:47 -0300
commitc212514035cffd38acbfac1413064937b28685b6 (patch)
treea043a9c3caac740cf61313d04d9d84280a44f30f /bin/mrconfig
downloadsemanticscuttle-c212514035cffd38acbfac1413064937b28685b6.tar.gz
semanticscuttle-c212514035cffd38acbfac1413064937b28685b6.tar.bz2
Squashed 'puppet/' content from commit eb5ecc4
git-subtree-dir: puppet git-subtree-split: eb5ecc4fcad6bd4f75e38683ae12a8dba4382c0b
Diffstat (limited to 'bin/mrconfig')
-rwxr-xr-xbin/mrconfig28
1 files changed, 28 insertions, 0 deletions
diff --git a/bin/mrconfig b/bin/mrconfig
new file mode 100755
index 0000000..41be968
--- /dev/null
+++ b/bin/mrconfig
@@ -0,0 +1,28 @@
+#!/bin/bash
+#
+# Build a mrconfig for the needed modules.
+#
+
+# Parameters
+GIT="git.fluxo.info"
+URL="https://$GIT/projects.list"
+CWD="`pwd`"
+WORK="`dirname $0`/.."
+
+# Create a new config
+cd $WORK
+rm -f $WORK/.mrconfig
+touch $WORK/.mrconfig
+
+# Fetch repository list and update mrconfig
+curl --stderr - $URL | grep "^puppet-" | cut -d ' ' -f 1 | sed -e 's/\.git$//' | while read module; do
+ folder="`echo $module | sed -e 's/^puppet-//'`"
+
+ if [ "$folder" != "bootstrap" ]; then
+ echo "Processing $folder..."
+ mr config puppet/modules/$folder checkout="git clone https://$GIT/$module $folder"
+ fi
+done
+
+# Teardown
+cd $CWD