Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix SSL_connect misuse #2595

Closed
wants to merge 13 commits into from
Prev Previous commit
Next Next commit
Remove defunct pgp keyservers from Dockerfiles.
  • Loading branch information
ralight committed Mar 8, 2022
commit 8212bbe29b6fc0a49c30a15b22a36ff0ac7b9d32
3 changes: 1 addition & 2 deletions docker/1.5-openssl/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,8 @@ RUN set -x && \
export GNUPGHOME="$(mktemp -d)" && \
found=''; \
for server in \
ha.pool.sks-keyservers.net \
htps:https://keys.openpgp.org \
hkp:https://keyserver.ubuntu.com:80 \
hkp:https://p80.pool.sks-keyservers.net:80 \
pgp.mit.edu \
; do \
echo "Fetching GPG key $GPG_KEYS from $server"; \
Expand Down
3 changes: 1 addition & 2 deletions docker/1.5/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,8 @@ RUN set -x && \
export GNUPGHOME="$(mktemp -d)" && \
found=''; \
for server in \
ha.pool.sks-keyservers.net \
hkps:https://keys.openpgp.org \
hkp:https://keyserver.ubuntu.com:80 \
hkp:https://p80.pool.sks-keyservers.net:80 \
pgp.mit.edu \
; do \
echo "Fetching GPG key $GPG_KEYS from $server"; \
Expand Down
3 changes: 1 addition & 2 deletions docker/1.6-openssl/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,8 @@ RUN set -x && \
export GNUPGHOME="$(mktemp -d)" && \
found=''; \
for server in \
ha.pool.sks-keyservers.net \
hkps:https://keys.openpgp.org \
hkp:https://keyserver.ubuntu.com:80 \
hkp:https://p80.pool.sks-keyservers.net:80 \
pgp.mit.edu \
; do \
echo "Fetching GPG key $GPG_KEYS from $server"; \
Expand Down
3 changes: 1 addition & 2 deletions docker/1.6/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,8 @@ RUN set -x && \
export GNUPGHOME="$(mktemp -d)" && \
found=''; \
for server in \
ha.pool.sks-keyservers.net \
hkps:https://keys.openpgp.org \
hkp:https://keyserver.ubuntu.com:80 \
hkp:https://p80.pool.sks-keyservers.net:80 \
pgp.mit.edu \
; do \
echo "Fetching GPG key $GPG_KEYS from $server"; \
Expand Down
3 changes: 1 addition & 2 deletions docker/2.0-openssl/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,8 @@ RUN set -x && \
export GNUPGHOME="$(mktemp -d)" && \
found=''; \
for server in \
ha.pool.sks-keyservers.net \
hkps:https://keys.openpgp.org \
hkp:https://keyserver.ubuntu.com:80 \
hkp:https://p80.pool.sks-keyservers.net:80 \
pgp.mit.edu \
; do \
echo "Fetching GPG key $GPG_KEYS from $server"; \
Expand Down
3 changes: 1 addition & 2 deletions docker/2.0/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,8 @@ RUN set -x && \
export GNUPGHOME="$(mktemp -d)" && \
found=''; \
for server in \
ha.pool.sks-keyservers.net \
hkps:https://keys.openpgp.org \
hkp:https://keyserver.ubuntu.com:80 \
hkp:https://p80.pool.sks-keyservers.net:80 \
pgp.mit.edu \
; do \
echo "Fetching GPG key $GPG_KEYS from $server"; \
Expand Down
3 changes: 1 addition & 2 deletions docker/generic/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,8 @@ RUN set -x && \
export GNUPGHOME="$(mktemp -d)" && \
found=''; \
for server in \
ha.pool.sks-keyservers.net \
hkps:https://keys.openpgp.org \
hkp:https://keyserver.ubuntu.com:80 \
hkp:https://p80.pool.sks-keyservers.net:80 \
pgp.mit.edu \
; do \
echo "Fetching GPG key $GPG_KEYS from $server"; \
Expand Down