From 10f4e977221a0c3fdb8ec7abfc503bda930dc264 Mon Sep 17 00:00:00 2001 From: f Date: Sat, 22 Apr 2023 14:53:33 -0300 Subject: [PATCH] BREAKING CHANGE: make nodes into full rsync urls --- certbotd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbotd.sh b/certbotd.sh index 4105f95..7899fef 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 -avHAXL --delete-after /etc/letsencrypt/live/ ${NODE}:/live/ + rsync -avHAXL --delete-after /etc/letsencrypt/live/ ${NODE}/ done }