From 6587faf068d02f0bcfdc37577321d5e47d83bd6c Mon Sep 17 00:00:00 2001 From: f Date: Sat, 10 Sep 2022 18:04:08 -0300 Subject: [PATCH] run normally if SINGLE_NODE is set --- certbotd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbotd.sh b/certbotd.sh index ce21078..35b4b77 100755 --- a/certbotd.sh +++ b/certbotd.sh @@ -1,6 +1,6 @@ #!/bin/sh -if test -z "${NODES}"; then +if test -z "${NODES}" && test -z "${SINGLE_NODE}"; then echo "The env var NODES is empty, if you don't want to synchronize to other servers, set SINGLE_NODE=true" >&2 exit 1 fi