From 8f9b8fbca8e4963700f8c9fc8fd3d340daacfa94 Mon Sep 17 00:00:00 2001 From: Christian Strack Date: Fri, 21 Aug 2020 09:09:47 +0200 Subject: [PATCH] Use proper pypy download url in bootstrap script (#6555) The bootstrap-os role uses a bootstrap script to provision a python interpreter on flatcar and container os hosts. As the pypy project switched to another hoster, the download url changed. If applied this will use the new proper pypy download url in bootstrap script --- roles/bootstrap-os/files/bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/bootstrap-os/files/bootstrap.sh b/roles/bootstrap-os/files/bootstrap.sh index ce9434aff10..0f4935cf8bf 100755 --- a/roles/bootstrap-os/files/bootstrap.sh +++ b/roles/bootstrap-os/files/bootstrap.sh @@ -3,7 +3,7 @@ set -e BINDIR="/opt/bin" PYPY_VERSION=7.3.1 -PYPI_URL="https://bitbucket.org/pypy/pypy/downloads/pypy3.6-v${PYPY_VERSION}-linux64.tar.bz2" +PYPI_URL="https://downloads.python.org/pypy/pypy3.6-v${PYPY_VERSION}-linux64.tar.bz2" PYPI_HASH=f67cf1664a336a3e939b58b3cabfe47d893356bdc01f2e17bc912aaa6605db12 mkdir -p $BINDIR