diff options
-rwxr-xr-x | share/hydra/module-update | 8 |
1 files 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 <hydra> module-update <module> [<module1> ... <moduleN>]" @@ -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 ) } |