539f86571f
On July 3, 2019, Let's Encrypt deployed new ACME server software that no longer returns the 'id' field in the account information JSON. Dehydrated relied on this field, even though it is not specified by RFC 8555. Because of this, dehydrated can no longer create a new account on Let's Encrypt. This was fixed by upstream commits be13dcd and 4f358e2. But the latter broke ACMEv1 support so was fixed again in commit f60f2f8. Cherry-picking this correctly is tricky, so instead just bump the version. There are quite a few non-bugfix changes that are included this way, but it's more risky to try to cherry-pick. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
19 lines
599 B
Makefile
19 lines
599 B
Makefile
################################################################################
|
|
#
|
|
# dehydrated
|
|
#
|
|
################################################################################
|
|
|
|
DEHYDRATED_VERSION = 0.6.5
|
|
DEHYDRATED_SITE = https://github.com/lukas2511/dehydrated/releases/download/v$(DEHYDRATED_VERSION)
|
|
|
|
DEHYDRATED_LICENSE = MIT
|
|
DEHYDRATED_LICENSE_FILES = LICENSE
|
|
|
|
define DEHYDRATED_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/dehydrated $(TARGET_DIR)/usr/bin/dehydrated
|
|
$(INSTALL) -D -m 0644 $(@D)/docs/examples/config $(TARGET_DIR)/etc/dehydrated/config
|
|
endef
|
|
|
|
$(eval $(generic-package))
|