diff options
Diffstat (limited to 'bin/mrconfig')
| -rwxr-xr-x | bin/mrconfig | 7 | 
1 files changed, 3 insertions, 4 deletions
| diff --git a/bin/mrconfig b/bin/mrconfig index dc753ac..48815c1 100755 --- a/bin/mrconfig +++ b/bin/mrconfig @@ -5,7 +5,7 @@  # Parameters  GIT="git.fluxo.info" -URL="https://$GIT/?a=project_index" +URL="https://$GIT/projects.list"  CWD="`pwd`"  WORK="`dirname $0`/.." @@ -15,13 +15,12 @@ rm -f .mrconfig  touch .mrconfig  # Fetch repository list and updtate mrconfig -curl --stderr - $URL | grep "^puppet-" | cut -d ' ' -f 1 | while read module; do +curl --stderr - $URL | grep "^puppet-" | cut -d ' ' -f 1 | sed -e 's/\.git$//' | while read module; do    folder="`echo $module | sed -e 's/^puppet-//'`" -  folder="`basename $folder .git`"    if [ "$folder" != "bootstrap" ]; then      echo "Processing $folder..." -    mr config puppet/modules/$folder checkout="git clone git://$GIT/$module $folder" +    mr config puppet/modules/$folder checkout="git clone https://$GIT/$module $folder"    fi  done | 
