diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2020-10-01 15:02:47 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2020-10-01 15:02:47 -0300 |
commit | 765ca2bd25384c3d33d243a5b2f0aa419edcd8fa (patch) | |
tree | b59aa15319607ea45ba83516628539b420d8841b /puppet/bin/mrconfig | |
parent | b0d7b1d90860f858578455c5cf695c062c0ade07 (diff) | |
parent | c212514035cffd38acbfac1413064937b28685b6 (diff) | |
download | semanticscuttle-765ca2bd25384c3d33d243a5b2f0aa419edcd8fa.tar.gz semanticscuttle-765ca2bd25384c3d33d243a5b2f0aa419edcd8fa.tar.bz2 |
Merge commit 'c212514035cffd38acbfac1413064937b28685b6' as 'puppet'
Diffstat (limited to 'puppet/bin/mrconfig')
-rwxr-xr-x | puppet/bin/mrconfig | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/puppet/bin/mrconfig b/puppet/bin/mrconfig new file mode 100755 index 0000000..41be968 --- /dev/null +++ b/puppet/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 |