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
This commit is contained in:
Joshua Hesketh 2014-10-03 12:22:55 +10:00
parent e30f37376d
commit 9bd21acd9a

View File

@ -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 {