From ea16ee62de3581beb3c3b38b7ec5bf3983ff33d7 Mon Sep 17 00:00:00 2001 From: Daniel Pawlik Date: Mon, 8 Mar 2021 15:10:58 +0100 Subject: [PATCH] Change get-pip urls The path for get-pip.py script in versions 3.2 and 3.4 have been changed with this commit [1]. [1] https://github.com/pypa/get-pip/commit/2360f025eb2a6f62d45cf99e4c6d83ba9c4d5e37 Change-Id: Iedef41b53c4e5fa28dac8206c5ba39dab5033815 --- multi-node-aio/bootstrap.sh | 2 +- pxelinux-provisioning/bootstrap.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/multi-node-aio/bootstrap.sh b/multi-node-aio/bootstrap.sh index aabe325f..610e0703 100755 --- a/multi-node-aio/bootstrap.sh +++ b/multi-node-aio/bootstrap.sh @@ -49,7 +49,7 @@ esac # Install pip3 if ! which pip3 &>/dev/null; then curl --silent --show-error --retry 5 \ - https://bootstrap.pypa.io/3.4/get-pip.py | sudo python3 + https://bootstrap.pypa.io/pip/3.4/get-pip.py | sudo python3 fi # Install bindep and tox diff --git a/pxelinux-provisioning/bootstrap.sh b/pxelinux-provisioning/bootstrap.sh index 3641e4d0..44bc0487 100755 --- a/pxelinux-provisioning/bootstrap.sh +++ b/pxelinux-provisioning/bootstrap.sh @@ -41,7 +41,7 @@ esac # Install pip if ! which pip &>/dev/null; then curl --silent --show-error --retry 5 \ - https://bootstrap.pypa.io/3.2/get-pip.py | sudo python2.7 + https://bootstrap.pypa.io/pip/3.2/get-pip.py | sudo python2.7 fi # Install bindep and tox