diff options
Diffstat (limited to 'puppet/bin/mrconfig')
-rwxr-xr-x | puppet/bin/mrconfig | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/puppet/bin/mrconfig b/puppet/bin/mrconfig index f525db3..dc753ac 100755 --- a/puppet/bin/mrconfig +++ b/puppet/bin/mrconfig @@ -1,10 +1,10 @@ #!/bin/bash # # Build a mrconfig for the needed modules. -# +# # Parameters -GIT="git.sarava.org" +GIT="git.fluxo.info" URL="https://$GIT/?a=project_index" CWD="`pwd`" WORK="`dirname $0`/.." @@ -18,8 +18,8 @@ touch .mrconfig curl --stderr - $URL | grep "^puppet-" | cut -d ' ' -f 1 | while read module; do folder="`echo $module | sed -e 's/^puppet-//'`" folder="`basename $folder .git`" - - if [ "$module" != "$bootstrap" ]; then + + if [ "$folder" != "bootstrap" ]; then echo "Processing $folder..." mr config puppet/modules/$folder checkout="git clone git://$GIT/$module $folder" fi |