only synchronize keys and certificates to other nodes

This commit is contained in:
f 2022-09-10 16:55:46 -03:00
parent ff742db293
commit ad905ae41d

View file

@ -29,7 +29,7 @@ ensure() {
# awkward. A restricted rsync treats / as the remote location for the # awkward. A restricted rsync treats / as the remote location for the
# certificates. # certificates.
for NODE in ${NODES}; do for NODE in ${NODES}; do
rsync -avHAX --delete-after /etc/letsencrypt/ ${NODE}:/ rsync -avHAXL --delete-after /etc/letsencrypt/live/ ${NODE}:/live/
done done
} }