aboutsummaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
Diffstat (limited to 'misc')
-rwxr-xr-xmisc/mrconfig.sh29
1 files changed, 0 insertions, 29 deletions
diff --git a/misc/mrconfig.sh b/misc/mrconfig.sh
deleted file mode 100755
index ffb0438..0000000
--- a/misc/mrconfig.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash
-#
-# Build a mrconfig for the needed modules.
-#
-
-# Parameters
-GIT="git.sarava.org"
-URL="https://$GIT/?a=project_index"
-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-" | while read module; do
- folder="`echo $module | sed -e 's/^puppet-//'`"
- folder="`basename $folder .git`"
-
- if [ "$module" != "$bootstrap" ];
- echo "Processing $folder..."
- mr config puppet/modules/$folder checkout="git clone git://$GIT/$module $folder"
- fi
-done
-
-# Teardown
-cd $CWD