#!/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