summaryrefslogtreecommitdiff
path: root/certbot-replicate
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2022-05-05 02:36:38 -0400
committerDaniel Micay <danielmicay@gmail.com>2022-05-05 02:36:38 -0400
commit5c2d25be16e4f0f29db3858c272433c791c42983 (patch)
tree8b7607a023a7d4f3eb7259d5103f22ebb1cd601a /certbot-replicate
parent0ea0e9020080bb64680ce35039d1cdcb71132069 (diff)
drop progress parameter from replicate rsync
Diffstat (limited to 'certbot-replicate')
-rwxr-xr-xcertbot-replicate4
1 files changed, 2 insertions, 2 deletions
diff --git a/certbot-replicate b/certbot-replicate
index 19806e9b..5de2db56 100755
--- a/certbot-replicate
+++ b/certbot-replicate
@@ -9,7 +9,7 @@ for replica in ${replicas[@]}; do
echo Deploying to $replica
echo
- rsync -rptvl --fsync --progress --delete /etc/letsencrypt/ $replica:/etc/letsencrypt
- rsync -rptvl --fsync --progress --delete /etc/nginx/ocsp-cache/ $replica:/etc/nginx/ocsp-cache
+ rsync -rptvl --fsync --delete /etc/letsencrypt/ $replica:/etc/letsencrypt
+ rsync -rptvl --fsync --delete /etc/nginx/ocsp-cache/ $replica:/etc/nginx/ocsp-cache
ssh root@$replica nginx -s reload
done