Hello in anticipation of https://fedoraproject.org/wiki/Changes/dropingOfCertPemFile fedora change proposal, which is taking effect during the fedora rawhide mass rebuild (starting 23th of July), we would like you to validate this and if applicable, consider using the file `/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem` instead of the `/etc/pki/tls/certs/ca-certificates.crt` certificate bundle which was found in the source-code. ``` ./lib/HTTP/Tiny.pm:1672: "/etc/pki/tls/certs/ca-bundle.crt", # Fedora/RHEL ```
HTTP::Tiny should get the directory-hash path automatically from IO::Socket::SSL::default_ca(), so I don't believe that any changes are needed here: $ perl -MIO::Socket::SSL -MData::Dumper -E 'say Dumper { IO::Socket::SSL::default_ca() }' $VAR1 = { 'SSL_ca_file' => '/etc/pki/tls/cert.pem', 'SSL_ca_path' => '/etc/pki/tls/certs' };
I am closing the issue for now. Feel free to reopen this issue if there are any problems.
Thanks Michal for looking into this