mirror of
https://github.com/certbot/certbot.git
synced 2026-06-09 00:32:12 -04:00
Soft quotes.
This commit is contained in:
parent
bbcde7974c
commit
2c79aa98f1
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue