Skip to content

Commit

Permalink
Use proper pypy download url in bootstrap script (kubernetes-sigs#6555)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
abyth authored and LuckySB committed Jan 10, 2021
1 parent f3fe317 commit 8f9b8fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roles/bootstrap-os/files/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8f9b8fb

Please sign in to comment.