aboutsummaryrefslogtreecommitdiff
path: root/files/puppet-add-sarava-submodules
blob: 81c8eda10a41ae39edcfcdd1dbc8173a4102c13e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

git init
git add .

mkdir -p ./modules

repos="`lynx -dump http://git.sarava.org/?a=project_index | awk '{ print $1 }' | grep ^puppet-`"
for repo in $repos; do
  module="`basename $repo .git | cut -d - -f 2`"
  if [ ! -d "modules/$module" ]; then
    git submodule add git://git.sarava.org/puppet-$module.git modules/$module
  fi
done