From 84ce816147e82c14357fc9920616c0d7064d2a46 Mon Sep 17 00:00:00 2001 From: linesight Date: Fri, 12 Mar 2021 10:36:58 -0800 Subject: [PATCH] pypa has updated its get-pip.py path --- manifests/pip/bootstrap.pp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/pip/bootstrap.pp b/manifests/pip/bootstrap.pp index b060a6d0..a2d31f1d 100644 --- a/manifests/pip/bootstrap.pp +++ b/manifests/pip/bootstrap.pp @@ -33,7 +33,7 @@ if $version == 'pip3' { exec { 'bootstrap pip3': - command => '/usr/bin/curl https://bootstrap.pypa.io/get-pip.py | python3', + command => '/usr/bin/curl https://bootstrap.pypa.io/pip/get-pip.py | python3', environment => $environ, unless => 'which pip3', path => $python::params::pip_lookup_path, @@ -50,7 +50,7 @@ } } else { exec { 'bootstrap pip': - command => '/usr/bin/curl https://bootstrap.pypa.io/get-pip.py | python', + command => '/usr/bin/curl https://bootstrap.pypa.io/pip/get-pip.py | python', environment => $environ, unless => 'which pip', path => $python::params::pip_lookup_path,