Skip to content

Commit f4fe95d

Browse files
danbevrichardlau
andauthored
ansible: update OpenSSL 3.0 to use quictls/openssl (#2613)
This commit update the version of OpenSSL 3.0 to use the quictls/openssl fork. This for will be used until upstream OpenSSL includes support for the QUIC protocol. At that point we can switch back to using upstream again. Co-authored-by: Richard Lau <[email protected]>
1 parent ab910b2 commit f4fe95d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ansible/roles/docker/templates/ubuntu1804_sharedlibs.Dockerfile.j2

+2-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ ENV OPENSSL300DIR /opt/openssl-3.0.0
5858

5959
RUN mkdir -p /tmp/openssl_3.0.0 && \
6060
cd /tmp/openssl_3.0.0 && \
61-
curl -sL https://www.openssl.org/source/openssl-3.0.0-alpha14.tar.gz | tar zxv --strip=1 && \
61+
git clone https://github.com./quictls/openssl.git -b openssl-3.0.0-alpha14+quic --depth 1 && \
62+
cd openssl && \
6263
./config --prefix=$OPENSSL300DIR && \
6364
make -j 6 && \
6465
make install && \

0 commit comments

Comments
 (0)