aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2015-08-19 19:26:26 -0300
committerSilvio Rhatto <rhatto@riseup.net>2015-08-19 19:26:26 -0300
commita461d98f5cfbda61937620cdf0829758a6bcca40 (patch)
treeb10f07c7786e374aad6d58978503f8b8d9455304
parent1920fba015437351d7f1d2b2e581c0efc2193cd0 (diff)
downloadpuppet-bootstrap-a461d98f5cfbda61937620cdf0829758a6bcca40.tar.gz
puppet-bootstrap-a461d98f5cfbda61937620cdf0829758a6bcca40.tar.bz2
Really remove bootstrap from mrconfig
-rw-r--r--.mrconfig3
-rwxr-xr-xbin/mrconfig2
2 files changed, 1 insertions, 4 deletions
diff --git a/.mrconfig b/.mrconfig
index 66d4003..9955af1 100644
--- a/.mrconfig
+++ b/.mrconfig
@@ -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