Ensure latest setuptools is present.

Upgrading to the latest setuptools in isolation works fine, but
if the upgrade is caused by a dependency and the distribute/setuptools
upgrade happens in a bad sequence, one can wind up with a broken
setuptools environment.

Change-Id: I3d55232ac9377156e405e16dac2f07cfcaa70ff5
This commit is contained in:
Monty Taylor 2013-07-10 14:34:39 -04:00
parent 2040016307
commit aeb3d1b587

View File

@ -52,6 +52,11 @@ class openstack_project::base(
}
include pip
package { 'setuptools':
ensure => latest,
provider => pip,
require => Class['pip'],
}
package { 'virtualenv':
ensure => latest,
provider => pip,