You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2021/06/10 00:20:35 UTC

[couchdb] 01/01: Remove attempt to download GeoTrust CA

This is an automated email from the ASF dual-hosted git repository.

kocolosk pushed a commit to branch fix-devcontainer-fdb-download
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit a7c3a5045aeb0b6c676fce23ae55720e8bd4e421
Author: Adam Kocoloski <ko...@apache.org>
AuthorDate: Wed Jun 9 20:19:58 2021 -0400

    Remove attempt to download GeoTrust CA
    
    This URL is a 404 now, but fortunately we don't care as
    foundationdb.org is no longer dependent on GeoTrust at all in its
    root of trust.
---
 .devcontainer/Dockerfile | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile
index d479bc5..3272dad 100644
--- a/.devcontainer/Dockerfile
+++ b/.devcontainer/Dockerfile
@@ -15,10 +15,8 @@ ARG FDB_VERSION
 ARG SM_VSN
 ENV SM_VSN=${SM_VSN:-60}
 
-# Workaround for Debian's temporary lack of trust in FDB Root CA
 RUN set -ex; \
-    wget https://www.geotrust.com/resources/root_certificates/certificates/GeoTrust_Global_CA.pem; \
-    wget --ca-certificate=GeoTrust_Global_CA.pem https://www.foundationdb.org/downloads/${FDB_VERSION}/ubuntu/installers/foundationdb-clients_${FDB_VERSION}-1_amd64.deb; \
+    wget https://www.foundationdb.org/downloads/${FDB_VERSION}/ubuntu/installers/foundationdb-clients_${FDB_VERSION}-1_amd64.deb; \
     mkdir /var/lib/foundationdb; \
     dpkg -i foundationdb-clients_${FDB_VERSION}-1_amd64.deb