system: revert CRLs in bundles, bundles need to die

This commit is contained in:
Franco Fichtner 2024-11-07 19:31:41 +01:00
parent 73e837d7d3
commit a08931c718

View File

@ -981,7 +981,7 @@ function system_trust_configure($verbose = false)
/* collect all the file content and write it to compatibility bundle locations */
$ca_bundle = [];
foreach (glob('/etc/ssl/certs/*.[r0-9]*') as $file) {
foreach (glob('/etc/ssl/certs/*.[0-9]') as $file) {
$ca_bundle[] = file_get_contents($file);
}
$ca_bundle = join("\n", $ca_bundle);