Manage pip in our server template class

This was an oversight in I673c9c177bf2fdb3e6428e3ad4252ee76b53309c
but seems to be necessary.

Change-Id: Ia007c385ead48252c5f9bce9d984832eeb1bfe38
This commit is contained in:
Jeremy Stanley 2015-07-29 17:59:35 +00:00
parent 520fb387e8
commit c492976f7b

View File

@ -209,8 +209,9 @@ class openstack_project::template (
$desired_virtualenv = '13.1.0'
class { '::pip':
index_url => $pypi_index_url,
trusted_hosts => $pypi_trusted_hosts,
index_url => $pypi_index_url,
trusted_hosts => $pypi_trusted_hosts,
manage_pip_conf => true,
}
if (( versioncmp($::virtualenv_version, $desired_virtualenv) < 0 )) {