aboutsummaryrefslogtreecommitdiff
path: root/bin/submodules
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-10-27 15:07:28 -0200
committerSilvio Rhatto <rhatto@riseup.net>2017-10-27 15:07:28 -0200
commit5fc1c8b30a1bb6e31864cc0d9f4fd4e1bdb90bdf (patch)
tree34694b3c7d950666a1ef9b3b51673afbdd5c2b39 /bin/submodules
parent779e5bd9113a76dd5bb77518c36388e96b7ff7bc (diff)
downloadpuppet-bootstrap-5fc1c8b30a1bb6e31864cc0d9f4fd4e1bdb90bdf.tar.gz
puppet-bootstrap-5fc1c8b30a1bb6e31864cc0d9f4fd4e1bdb90bdf.tar.bz2
Detect puppet folder on scripts
Diffstat (limited to 'bin/submodules')
-rwxr-xr-xbin/submodules13
1 files changed, 10 insertions, 3 deletions
diff --git a/bin/submodules b/bin/submodules
index 3abc46d..960d290 100755
--- a/bin/submodules
+++ b/bin/submodules
@@ -12,18 +12,25 @@ function usage {
exit $2
}
+# Set puppet folder
+if [ -d "puppet" ]; then
+ PUPPET_FOLDER="puppet"
+else
+ PUPPET_FOLDER="."
+fi
+
# Get module list
repos="`grep = $DIRNAME/../.mrconfig | cut -d = -f 2 | cut -d ' ' -f 4`"
# Add submodules
for repo in $repos; do
module="`basename $repo .git | sed -e s/^puppet-//`"
- if [ ! -d "modules/$module" ]; then
+ if [ ! -d "$PUPPET_FOLDER/modules/$module" ]; then
echo "Processing puppet module $module..."
- git submodule add -f $repo modules/$module
+ git submodule add -f $repo $PUPPET_FOLDER/modules/$module
elif [ -e "modules/$module/.git" ]; then
# The puppet module exists and is a git submodule, so update it
- ( cd module/$module && git pull origin master )
+ ( cd $PUPPET_FOLDER/modules/$module && git pull origin master )
fi
done