]> gitweb.fluxo.info Git - hydra.git/commitdiff
Increasing verbosity at module-commit
authorSilvio Rhatto <rhatto@riseup.net>
Thu, 24 Jan 2013 15:43:53 +0000 (13:43 -0200)
committerSilvio Rhatto <rhatto@riseup.net>
Thu, 24 Jan 2013 15:43:53 +0000 (13:43 -0200)
share/hydra/module-commit
share/hydra/module-update

index db8e9350090e05f8959e92730cb9e4db62c9740c..131b7db9fc5ce0d545f2b4f043979bb9bb2e1ff3 100755 (executable)
@@ -24,7 +24,9 @@ MODULE="$1"
 
 if [ -d "$HYDRA_FOLDER/modules/$MODULE" ]; then
   shift
+  echo "Commiting changes at $MODULE module..."
   ( cd "$HYDRA_FOLDER/modules/$MODULE" && git commit -a -m "$*" )
+  echo ""
   hydra $HYDRA module-update $MODULE
 else
   echo "Not such module $MODULE"
index 8b6c741dcaf9107e20784f391527b61b5b9bd67c..2fc0192e2b316576c157c7cf9b1c0169e5b4ebd1 100755 (executable)
@@ -47,6 +47,6 @@ function hydra_module_update {
 }
 
 for module in $*; do
-  echo "Updating module $module..."
+  echo "Updating module $module at puppet repository..."
   hydra_module_update $module
 done