File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,9 @@ PY_SHORT=${PYTHON_VERSION%.*}
3939wget -O /tmp/python.tgz https://www.python.org/ftp/python/${PYTHON_VERSION} /Python-${PYTHON_VERSION} .tgz
4040wget -O /tmp/Python-gpg-sig-${PYTHON_VERSION} .tgz.asc https://www.python.org/ftp/python/${PYTHON_VERSION} /Python-${PYTHON_VERSION} .tgz.asc
4141apt-get install dirmngr -y
42- gpg --keyserver pool.sks-keyservers.net --recv-keys $PYTHON_GPG_KEY_ID
42+ gpg --keyserver pool.sks-keyservers.net --recv-keys $PYTHON_GPG_KEY_ID \
43+ || gpg --keyserver pgp.mit.edu --recv-keys $PYTHON_GPG_KEY_ID \
44+ || gpg --keyserver keyserver.pgp.com --recv-keys $PYTHON_GPG_KEY_ID
4345gpg --verify /tmp/Python-gpg-sig-${PYTHON_VERSION} .tgz.asc /tmp/python.tgz
4446rm /tmp/Python-gpg-sig-${PYTHON_VERSION} .tgz.asc
4547mkdir -p /tmp/pyinstall
Original file line number Diff line number Diff line change @@ -35,7 +35,9 @@ microdnf -y --nodocs update gnutls kernel-headers librepo libnghttp2 tzdata nett
3535PY_SHORT=${PYTHON_VERSION% .* }
3636wget -O /tmp/python.tgz https://www.python.org/ftp/python/${PYTHON_VERSION} /Python-${PYTHON_VERSION} .tgz
3737wget -O /tmp/Python-gpg-sig-${PYTHON_VERSION} .tgz.asc https://www.python.org/ftp/python/${PYTHON_VERSION} /Python-${PYTHON_VERSION} .tgz.asc
38- gpg --keyserver pool.sks-keyservers.net --recv-keys $PYTHON_GPG_KEY_ID
38+ gpg --keyserver pool.sks-keyservers.net --recv-keys $PYTHON_GPG_KEY_ID \
39+ || gpg --keyserver pgp.mit.edu --recv-keys $PYTHON_GPG_KEY_ID \
40+ || gpg --keyserver keyserver.pgp.com --recv-keys $PYTHON_GPG_KEY_ID
3941gpg --verify /tmp/Python-gpg-sig-${PYTHON_VERSION} .tgz.asc /tmp/python.tgz
4042rm /tmp/Python-gpg-sig-${PYTHON_VERSION} .tgz.asc
4143mkdir -p /tmp/pyinstall
You can’t perform that action at this time.
0 commit comments