aboutsummaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
Diffstat (limited to 'files')
-rw-r--r--files/puppet-add-sarava-submodules14
1 files changed, 0 insertions, 14 deletions
diff --git a/files/puppet-add-sarava-submodules b/files/puppet-add-sarava-submodules
deleted file mode 100644
index 81c8eda..0000000
--- a/files/puppet-add-sarava-submodules
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-git init
-git add .
-
-mkdir -p ./modules
-
-repos="`lynx -dump http://git.sarava.org/?a=project_index | awk '{ print $1 }' | grep ^puppet-`"
-for repo in $repos; do
- module="`basename $repo .git | cut -d - -f 2`"
- if [ ! -d "modules/$module" ]; then
- git submodule add git://git.sarava.org/puppet-$module.git modules/$module
- fi
-done