From b761ef1f84b2a9243b790d42ff9abe33063eca3a Mon Sep 17 00:00:00 2001 From: Marco Streich Date: Tue, 19 Jan 2021 13:40:04 +0100 Subject: [PATCH] Fix reference --- infrastructure/modules/compute/certbot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/modules/compute/certbot.sh b/infrastructure/modules/compute/certbot.sh index cebf6cb..afb413e 100644 --- a/infrastructure/modules/compute/certbot.sh +++ b/infrastructure/modules/compute/certbot.sh @@ -18,7 +18,7 @@ done case "$args" in "--renew") printf "Running Certbot (for renewal) before deploying certificate..\n\n" - certbot certonly --non-interactive --agree-tos -m webmaster@"$DOMAIN_NAME" --work-dir "$LETSENCRYPT_DIR"/lib --logs-dir "$LETSENCRYPT_DIR"/log --config-dir "$LETSENCRYPT_DIR"/etc --dns-route53 --preferred-challenges dns $domains + $certbot certonly --non-interactive --agree-tos -m webmaster@"$DOMAIN_NAME" --work-dir "$LETSENCRYPT_DIR"/lib --logs-dir "$LETSENCRYPT_DIR"/log --config-dir "$LETSENCRYPT_DIR"/etc --dns-route53 --preferred-challenges dns $domains ;; *) printf "Deploying existing certificate without running Certbot..\n\n"