Beware updating package ca-certificates
by Weber Kai from LinuxQuestions.org on (#5QBCY)
Hi!
If you updated ca-certificates, maybe this error is happening to you too.
The doinst.sh script keeps the old file /etc/ca-certificates.conf and saves the new file as /etc/ca-certificates.conf.new .
Then it executes other script which reads /etc/ca-certificates.conf, and this way, it reads the old file and new issuers are not updated.
I've executed this to solve:
Code:mv /etc/ca-certificates.conf /etc/ca-certificates.conf.old
mv /etc/ca-certificates.conf.new /etc/ca-certificates.conf
/usr/sbin/update-ca-certificates --freshThanks!
If you updated ca-certificates, maybe this error is happening to you too.
The doinst.sh script keeps the old file /etc/ca-certificates.conf and saves the new file as /etc/ca-certificates.conf.new .
Then it executes other script which reads /etc/ca-certificates.conf, and this way, it reads the old file and new issuers are not updated.
I've executed this to solve:
Code:mv /etc/ca-certificates.conf /etc/ca-certificates.conf.old
mv /etc/ca-certificates.conf.new /etc/ca-certificates.conf
/usr/sbin/update-ca-certificates --freshThanks!