diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-07-06 15:27:03 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-07-06 15:27:03 -0300 |
commit | 0d6de3801d5a1859c1e3a9c70c687d7a62526850 (patch) | |
tree | d957a553df6275a7c34bc76537eaaf8606ced853 /bin/mrconfig | |
parent | 28bd7e2818bc751844fe9965fe8c4d87d976c2b2 (diff) | |
download | puppet-bootstrap-0d6de3801d5a1859c1e3a9c70c687d7a62526850.tar.gz puppet-bootstrap-0d6de3801d5a1859c1e3a9c70c687d7a62526850.tar.bz2 |
Coding style
Diffstat (limited to 'bin/mrconfig')
-rwxr-xr-x | bin/mrconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/mrconfig b/bin/mrconfig index f525db3..7c63bb3 100755 --- a/bin/mrconfig +++ b/bin/mrconfig @@ -1,7 +1,7 @@ #!/bin/bash # # Build a mrconfig for the needed modules. -# +# # Parameters GIT="git.sarava.org" @@ -18,7 +18,7 @@ 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 echo "Processing $folder..." mr config puppet/modules/$folder checkout="git clone git://$GIT/$module $folder" |