mirror of https://github.com/openXC7/prjxray.git
Merge pull request #1749 from mithro/kokoro-letsencrypt-fix
Delete expired Let's Encrypt certificate.
This commit is contained in:
commit
60168e9b7e
|
|
@ -16,6 +16,29 @@ echo "----------------------------------------"
|
|||
sudo apt-get remove -y cmake
|
||||
echo "----------------------------------------"
|
||||
|
||||
echo
|
||||
echo "========================================"
|
||||
echo "Update the CA certificates"
|
||||
echo "----------------------------------------"
|
||||
sudo apt-get install -y ca-certificates
|
||||
echo "----------------------------------------"
|
||||
sudo update-ca-certificates
|
||||
echo "----------------------------------------"
|
||||
|
||||
echo
|
||||
echo "========================================"
|
||||
echo "Remove the expire letsencrypt.org cert "
|
||||
echo "----------------------------------------"
|
||||
wget https://helloworld.letsencrypt.org/ || true
|
||||
echo "----------------------------------------"
|
||||
sudo rm /usr/share/ca-certificates/mozilla/DST_Root_CA_X3.crt
|
||||
echo "----------------------------------------"
|
||||
sudo update-ca-certificates
|
||||
echo "----------------------------------------"
|
||||
wget https://helloworld.letsencrypt.org/ || true
|
||||
echo "----------------------------------------"
|
||||
|
||||
|
||||
echo
|
||||
echo "========================================"
|
||||
echo "Host adding PPAs"
|
||||
|
|
|
|||
Loading…
Reference in New Issue