From ad905ae41d3b87f23e4170b4b40a0eb4e350fc20 Mon Sep 17 00:00:00 2001 From: f Date: Sat, 10 Sep 2022 16:55:46 -0300 Subject: [PATCH] only synchronize keys and certificates to other nodes --- certbotd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbotd.sh b/certbotd.sh index 28f790a..ce21078 100755 --- a/certbotd.sh +++ b/certbotd.sh @@ -29,7 +29,7 @@ ensure() { # awkward. A restricted rsync treats / as the remote location for the # certificates. for NODE in ${NODES}; do - rsync -avHAX --delete-after /etc/letsencrypt/ ${NODE}:/ + rsync -avHAXL --delete-after /etc/letsencrypt/live/ ${NODE}:/live/ done }