diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-03-26 17:00:36 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-03-26 17:00:36 -0300 |
commit | 86cbe93308318c86a04eaee79fe0491b3f9cd45b (patch) | |
tree | 0474b6a6f28868f4ad3e5fc80045356ec5271d39 | |
parent | 1d15ce084b47eb5c54f3c6289db136c0ae28158e (diff) | |
download | hydra-86cbe93308318c86a04eaee79fe0491b3f9cd45b.tar.gz hydra-86cbe93308318c86a04eaee79fe0491b3f9cd45b.tar.bz2 |
Coding style
-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 ) } |