mirror of
https://github.com/dehydrated-io/dehydrated.git
synced 2026-01-11 22:30:44 +01:00
SANs broken since 31st #555
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 @paulkaweb on GitHub (Nov 1, 2021).
Hello, we seem to be having issues creating/renewing certs since your last commits.. the problem seems to stem from this change:
now causes the following:
root@foo:~# openssl req -noout -text -in /etc/apache2/ssl/www.example.com.csr | awk '/X509v3 Subject Alternative Name:/{print;getline;print;}' | tail -n1 | sed -r -e 's/^:space:*//; s/, /'"'$'\n'"'/g'
DNS:example.com'$'
'DNS:www.example.com
what should happen:
root@foo:~# openssl req -noout -text -in /etc/apache2/ssl/www.example.com.csr | awk '/X509v3 Subject Alternative Name:/{print;getline;print;}' | tail -n1 | sed -r -e 's/^:space:*//; s/, /'$'\n''/g'
DNS:example.com
DNS:www.example.com
@lukas2511 commented on GitHub (Nov 1, 2021):
Thanks for reporting. I reverted that change and it should hopefully be working again.