From c2f3551466aac66174cd666dc8eececd13d98c14 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 28 Jul 2025 07:22:05 +0200 Subject: fix system certificates path rhbz#2383719 --- php-composer-ca-bundle-rpm.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'php-composer-ca-bundle-rpm.patch') diff --git a/php-composer-ca-bundle-rpm.patch b/php-composer-ca-bundle-rpm.patch index 3dfdc65..04bd4c1 100644 --- a/php-composer-ca-bundle-rpm.patch +++ b/php-composer-ca-bundle-rpm.patch @@ -6,7 +6,7 @@ diff -up ./src/CaBundle.php.rpm ./src/CaBundle.php public static function getBundledCaBundlePath() { - $caBundleFile = __DIR__.'/../res/cacert.pem'; -+ $caBundleFile = '/etc/pki/tls/certs/ca-bundle.crt'; // System CA, always ++ $caBundleFile = '/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem'; // System CA, always // cURL does not understand 'phar://' paths // see https://github.com/composer/ca-bundle/issues/10 -- cgit