From 86cbe93308318c86a04eaee79fe0491b3f9cd45b Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Thu, 26 Mar 2015 17:00:36 -0300 Subject: Coding style --- share/hydra/module-update | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/share/hydra/module-update b/share/hydra/module-update index b606132..b573a73 100755 --- a/share/hydra/module-update +++ b/share/hydra/module-update @@ -23,7 +23,7 @@ hydra_config_load function hydra_module_update { # Command line arguments MODULE="$1" - + # Validation if [ -z "$MODULE" ]; then echo "Usage: hydra module-update [ ... ]" @@ -32,7 +32,7 @@ function hydra_module_update { echo "No such module $MODULE at $HYDRA puppet configuration." exit 1 fi - + # Update the module ( cd $PUPPET/modules/$MODULE @@ -44,13 +44,13 @@ function hydra_module_update { git pull ) - + # Verify the module if ! hydra $HYDRA module-verify $MODULE; then echo "ERROR: Updated module doesn't match hash, please verify and update manually." exit 1 fi - + # Commit ( cd $PUPPET; git commit -a -m "Updating module $MODULE"; git push ) } -- cgit v1.2.3