From aa8030e651004b6553b72af3d0202a4d83dd4e7e Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Tue, 7 Aug 2012 09:24:45 -0500 Subject: [PATCH] Don't re-install pip from pip every run. I think having a recent pip is fine. If we run in to problems, we can go back, but I think we're mainly just wasting effort here. Change-Id: Ic5f2d49b2002393e1f9b048472266c0a00225110 Reviewed-on: https://review.openstack.org/10963 Approved: Monty Taylor Reviewed-by: Monty Taylor Tested-by: Jenkins --- modules/pypimirror/manifests/init.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/pypimirror/manifests/init.pp b/modules/pypimirror/manifests/init.pp index f08bc5d596..da51394a3d 100644 --- a/modules/pypimirror/manifests/init.pp +++ b/modules/pypimirror/manifests/init.pp @@ -13,7 +13,7 @@ class pypimirror ( $base_url, } package { 'pip': - ensure => latest, # okay to use latest for pip + ensure => present, provider => 'pip', require => Class[pip] }