puppet-pip/manifests/init.pp
Monty Taylor cb3ce4d802 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
2013-12-18 20:03:39 +00:00

11 lines
130 B
Puppet

# Class: pip
#
class pip {
include pip::params
package { $::pip::params::python_devel_package:
ensure => present,
}
}