aboutsummaryrefslogtreecommitdiff
path: root/misc/mrconfig.sh
blob: 043ea74563adfdfc08c2184e4abff05f596c4164 (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
#!/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