summaryrefslogtreecommitdiff
path: root/bin/mrconfig
blob: 48815c161bc475e4ca4090da03e4b71289a7699e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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 .mrconfig
touch .mrconfig

# Fetch repository list and updtate 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