mirror of
https://github.com/dehydrated-io/dehydrated.git
synced 2026-01-11 22:30:44 +01:00
Responding to challanges when many SANs #239
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @belliash on GitHub (Aug 4, 2017).
I got a question / problem regarding responding to challenges.
Actually, according to dehydrated output, it requests a challange for all SANs in CSR and then launches a hook, which inserts TXT record. After wards it sends a response to challange and cleanup TXT records. Then repeat.
My problem is that I need to wait few minutes to propagate the changes in DNS. If I add a sleep to hook after inserting TXT record it takes a lot of time to wait for every TXT record.
What would solve my problem is to add all TXT records, wait some time, respond to all challanges and finally cleanup all TXT records.
Is that possible with dehydrated?
@txr13 commented on GitHub (Aug 4, 2017):
You should look into the HOOK_CHAIN parameter. It's designed for exactly this sort of issue.
@belliash commented on GitHub (Aug 6, 2017):
That's it! Thanks.