diff options
-rw-r--r-- | .mrconfig | 3 | ||||
-rwxr-xr-x | bin/mrconfig | 2 |
2 files changed, 1 insertions, 4 deletions
@@ -32,9 +32,6 @@ checkout = git clone git://git.sarava.org/puppet-bind.git bind [puppet/modules/bitcoind] checkout = git clone git://git.sarava.org/puppet-bitcoind.git bitcoind -[puppet/modules/bootstrap] -checkout = git clone git://git.sarava.org/puppet-bootstrap.git bootstrap - [puppet/modules/common] checkout = git clone git://git.sarava.org/puppet-common.git common diff --git a/bin/mrconfig b/bin/mrconfig index 7c63bb3..d061f5b 100755 --- a/bin/mrconfig +++ b/bin/mrconfig @@ -19,7 +19,7 @@ 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 |