fix: ignore synchronization errors

This commit is contained in:
f 2024-06-14 16:46:24 -03:00
parent cfa66e1387
commit f1b7533218
No known key found for this signature in database

View file

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