aboutsummaryrefslogtreecommitdiff
path: root/bin/mrconfig
diff options
context:
space:
mode:
Diffstat (limited to 'bin/mrconfig')
-rwxr-xr-xbin/mrconfig28
1 files changed, 0 insertions, 28 deletions
diff --git a/bin/mrconfig b/bin/mrconfig
deleted file mode 100755
index 48815c1..0000000
--- a/bin/mrconfig
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/bin/bash
-#
-# Build a mrconfig for the needed modules.
-#
-
-# Parameters
-GIT="git.fluxo.info"
-URL="https://$GIT/projects.list"
-CWD="`pwd`"
-WORK="`dirname $0`/.."
-
-# Create a new config
-cd $WORK
-rm -f .mrconfig
-touch .mrconfig
-
-# Fetch repository list and updtate mrconfig
-curl --stderr - $URL | grep "^puppet-" | cut -d ' ' -f 1 | sed -e 's/\.git$//' | while read module; do
- folder="`echo $module | sed -e 's/^puppet-//'`"
-
- if [ "$folder" != "bootstrap" ]; then
- echo "Processing $folder..."
- mr config puppet/modules/$folder checkout="git clone https://$GIT/$module $folder"
- fi
-done
-
-# Teardown
-cd $CWD