mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 22:33:00 -04:00
* Remove aauthzr instance variable * If domain begins with fail, fail the challenge. * test --allow-subset-of-names * Fix renewal and add extra check * test after hook checks
8 lines
271 B
Bash
Executable file
8 lines
271 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# 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://localhost:8055/clear-txt' -d \
|
|
"{\"host\": \"_acme-challenge.$CERTBOT_DOMAIN.\"}"
|
|
fi
|