From 2c79aa98f16af0f76bc3c072a39a07ca68f573e7 Mon Sep 17 00:00:00 2001 From: Jacob Hoffman-Andrews Date: Tue, 8 May 2018 16:28:55 -0700 Subject: [PATCH] Soft quotes. --- tests/manual-dns-auth.sh | 2 +- tests/manual-dns-cleanup.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/manual-dns-auth.sh b/tests/manual-dns-auth.sh index 121b21ac0..204b9a9d5 100755 --- a/tests/manual-dns-auth.sh +++ b/tests/manual-dns-auth.sh @@ -2,7 +2,7 @@ # If domain begins with fail, fail the challenge by not completing it. if [[ "$CERTBOT_DOMAIN" != fail* ]]; then - curl -X POST 'http://$BOULDER_IP:8055/set-txt' -d \ + curl -X POST "http://$BOULDER_IP:8055/set-txt" -d \ "{\"host\": \"_acme-challenge.$CERTBOT_DOMAIN.\", \ \"value\": \"$CERTBOT_VALIDATION\"}" fi diff --git a/tests/manual-dns-cleanup.sh b/tests/manual-dns-cleanup.sh index 8fa2ebbc4..3b71421aa 100755 --- a/tests/manual-dns-cleanup.sh +++ b/tests/manual-dns-cleanup.sh @@ -3,6 +3,6 @@ # If domain begins with fail, we didn't complete the challenge so there is # nothing to clean up. if [[ "$CERTBOT_DOMAIN" != fail* ]]; then - curl -X POST 'http://$BOULDER_IP:8055/clear-txt' -d \ + curl -X POST "http://$BOULDER_IP:8055/clear-txt" -d \ "{\"host\": \"_acme-challenge.$CERTBOT_DOMAIN.\"}" fi