CA_REVOKE_CERT Unbound #236

Closed
opened 2025-12-29 01:19:34 +01:00 by adam · 2 comments
Owner

Originally created by @taylorotwell on GitHub (Jul 18, 2017).

Starting today, all our customers have started receiving this error when issuing certificates using deydrated:

# INFO: Using main config file /root/letsencrypt1500328841/config
./dehydrated: line 415: CA_REVOKE_CERT: unbound variable
Originally created by @taylorotwell on GitHub (Jul 18, 2017). Starting today, all our customers have started receiving this error when issuing certificates using deydrated: ``` # INFO: Using main config file /root/letsencrypt1500328841/config ./dehydrated: line 415: CA_REVOKE_CERT: unbound variable ```
adam closed this issue 2025-12-29 01:19:34 +01:00
Author
Owner

@csandescu commented on GitHub (Jul 18, 2017):

You can easily fix that by using lazy evaluation in bash like this:

if [[ "${statuscode}" = "409" ]] && [[ "${2}" = "${CA_REVOKE_CERT}" ]]; then

However, after fixing it I'm getting:

Details:
{
"type": "urn:acme:error:serverInternal",
"detail": "Error creating new cert",
"status": 500
}

So I guess there's something more to it.
I figured it out, you'll need to update your code to the latest version first. Then you can apply the patch.

C/

@csandescu commented on GitHub (Jul 18, 2017): You can easily fix that by using lazy evaluation in bash like this: `if [[ "${statuscode}" = "409" ]] && [[ "${2}" = "${CA_REVOKE_CERT}" ]]; then` However, after fixing it I'm getting: > + ERROR: An error occurred while sending post-request to https://acme-v01.api.letsencrypt.org/acme/new-cert (Status 500) > > Details: > { > "type": "urn:acme:error:serverInternal", > "detail": "Error creating new cert", > "status": 500 > } So I guess there's something more to it. I figured it out, you'll need to update your code to the latest version first. Then you can apply the patch. C/
Author
Owner

@lukas2511 commented on GitHub (Jul 18, 2017):

@taylorotwell can you please test with the newest version? this should be fixed now

@lukas2511 commented on GitHub (Jul 18, 2017): @taylorotwell can you please test with the newest version? this should be fixed now
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/dehydrated#236