I have two raspberry pi zero w(s) -- one using piCore version 11.0 and one using version 13.0.3. The following code works on 11.0 but fails on 13.0.3:
git clone https://github.com/AbiWord/abiword.git
Here is the error message:
tc@box:~$ git clone https://github.com/AbiWord/abiword.git
Cloning into 'abiword'...
fatal: unable to access 'https://github.com/AbiWord/abiword.git/': error setting certificate verify locations:
CAfile: /usr/local/etc/pki/certs/ca-bundle.crt
CApath: none
I believe the problem is related to the contents of ca-certificates.tcz in piCore version 13.0.3. The extension's content is very different from the extension content in 11.0. The link /usr/local/etc/pki/certs/ca-bundle.crt in version 13.0.3 exists but the link points to a nonexistent file, /usr/local/etc/ssl/certs/ca-certificates.crt.
I was able to work around the issue by turning off the git https protocol in 13.0.3 piCore:
git config --global http.sslverify "false"
But that not a good long term solution. I don't know what that solution should be as either git or ca-certificates extension could be out of date. Please advise.
regards,
ctor