aboutsummaryrefslogtreecommitdiff
path: root/lib/hydra/deploy
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2015-11-18 16:55:01 -0200
committerSilvio Rhatto <rhatto@riseup.net>2015-11-18 16:55:01 -0200
commitd584f6d086c02ee796c8ba9f1a7afc30422b3601 (patch)
tree6832ccc91905b2d8c612852a133ece76fdeebc2c /lib/hydra/deploy
parenta69322bf6757fe100d7cf707c74bf963a2644eff (diff)
downloadhydra-d584f6d086c02ee796c8ba9f1a7afc30422b3601.tar.gz
hydra-d584f6d086c02ee796c8ba9f1a7afc30422b3601.tar.bz2
Deploy: quiet rsync
Diffstat (limited to 'lib/hydra/deploy')
-rw-r--r--lib/hydra/deploy6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/hydra/deploy b/lib/hydra/deploy
index 70af439..5c288a5 100644
--- a/lib/hydra/deploy
+++ b/lib/hydra/deploy
@@ -5,8 +5,8 @@ function hydra_deploy_setup {
# Common parameters
# Exclude eventual keys and version control files
DEPLOY_DEPENDENCIES="puppet ruby-sqlite3 ruby-activerecord ruby-activerecord-deprecated-finders"
- DEPLOY_RSYNC="rsync -CrltDvp --no-owner --exclude=/ssl --exclude=keys --exclude=site_keys --exclude=hiera/secrets --delete --rsync-path"
- RSYNC_PATH="rsync"
+ DEPLOY_RSYNC="rsync -CrltDvpq --no-owner --exclude=/ssl --exclude=keys --exclude=site_keys --exclude=hiera/secrets --delete --rsync-path"
+ RSYNC_PATH="rsync -q"
COPY_PATH=""
if [ "$1" == "remote" ]; then
@@ -18,7 +18,7 @@ function hydra_deploy_setup {
FQDN="`$DEPLOY_COMMAND cat /etc/hostname`"
DEPLOY_OPTS="$HYDRA_FOLDER/puppet/ $NODE:/etc/puppet/"
DEPLOY_DEST="$FQDN:"
- RSYNC_PATH="sudo rsync"
+ RSYNC_PATH="sudo rsync -q"
COPY_PATH="$RSYNC_PATH"
hydra_deploy_set_manifest
else