Soft quotes.

This commit is contained in:
Jacob Hoffman-Andrews 2018-05-08 16:28:55 -07:00
parent bbcde7974c
commit 2c79aa98f1
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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