No longer link pip to pip-python on Red Hat

* modules/pip/manifests/init.pp: Remove the symlink workaround for
older python-pip EPEL packages since current versions now provide
/usr/bin/pip directly instead of /usr/bin/pip-python. The latter has
been switched to a symlink itself, so without this change in Puppet
we get circular symlinks and no executable.

Change-Id: If09a9c2a511dcc9ae845833543e304f1459fdeb2
This commit is contained in:
Jeremy Stanley 2013-08-06 23:43:57 +00:00
parent 5e7c0d558d
commit 004b738c35
1 changed files with 0 additions and 9 deletions

View File

@ -12,13 +12,4 @@ class pip {
require => Package[$::pip::params::python_devel_package]
}
if ($::operatingsystem in ['CentOS', 'RedHat']) {
file { '/usr/bin/pip':
ensure => 'link',
target => '/usr/bin/pip-python',
}
}
}