From 4f8ed2c553a0ec0995dc5129dae4c590d839c8c1 Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Tue, 6 Aug 2013 23:43:57 +0000 Subject: [PATCH] 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 --- modules/pip/manifests/init.pp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/modules/pip/manifests/init.pp b/modules/pip/manifests/init.pp index 45a2170548..7fc0605daa 100644 --- a/modules/pip/manifests/init.pp +++ b/modules/pip/manifests/init.pp @@ -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', - } - - } - }