From 9bd21acd9a419e46518e1ba492897e947543c651 Mon Sep 17 00:00:00 2001 From: Joshua Hesketh Date: Fri, 3 Oct 2014 12:22:55 +1000 Subject: [PATCH] Fix pip in centos6 puppet looks for pip-python (rather than pip) when osfamily is redhat. Somehow this wasn't causing a problem before (presumably pip-python package was left behind but something has changed upstream) and now we need to create a symlink for rhel6 as well. Change-Id: I1f11aa7f6b33aa846e10715dd1653bb43e1c9d7e --- install_puppet.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install_puppet.sh b/install_puppet.sh index a9389294a9..aefc960d5c 100755 --- a/install_puppet.sh +++ b/install_puppet.sh @@ -124,6 +124,9 @@ EOF fi yum update -y + + # see comments in setup_puppet_fedora + ln -s /usr/bin/pip /usr/bin/pip-python } function setup_puppet_ubuntu {