Install pip using get-pip in launch node

packaged pip vs. upstream pip gets the systems very broken. Make launch-node
use get-pip to install pip as per:

http://www.pip-installer.org/en/latest/installing.html

Change-Id: Ice28b47d766c04b42462a7297911dc1a1abe5a77
This commit is contained in:
Monty Taylor 2013-12-18 19:55:12 +00:00
parent 004b738c35
commit cb3ce4d802
2 changed files with 0 additions and 7 deletions

View File

@ -7,9 +7,4 @@ class pip {
ensure => present,
}
package { $::pip::params::python_pip_package:
ensure => present,
require => Package[$::pip::params::python_devel_package]
}
}

View File

@ -6,13 +6,11 @@ class pip::params {
case $::osfamily {
'RedHat': {
$python_devel_package = 'python-devel'
$python_pip_package = 'python-pip'
$python3_devel_package = 'python3-devel'
$python3_pip_package = 'python3-pip'
}
'Debian': {
$python_devel_package = 'python-all-dev'
$python_pip_package = 'python-pip'
$python3_devel_package = 'python3-all-dev'
$python3_pip_package = 'python3-pip'
}