mirror of
https://github.com/dehydrated-io/dehydrated.git
synced 2026-01-13 23:23:32 +01:00
openssl 3.2+ support (Warning: Will read cert request from stdin since no -in option is given) #631
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 @13ilya on GitHub (Dec 22, 2024).
https://github.com/dehydrated-io/dehydrated/blob/master/dehydrated#L1014
if ! <<<"${csr}" "${OPENSSL}" req -verify -noout >/dev/null 2>&1; thenhttps://github.com/dehydrated-io/dehydrated/blob/master/dehydrated#L1018
reqtext="$( <<<"${csr}" "${OPENSSL}" req -noout -text )"openssl req3.2+ no longer accepts data fromstdin, but only viafilepathwith the-inoption.@lukas2511 commented on GitHub (Apr 14, 2025):
Closing this issue as PR #940 has been merged, which should have fixed the underlying issue. Sorry this took so long.