From 409c7c3afa59be55bdc415aa429deb8945fb323d Mon Sep 17 00:00:00 2001 From: Andrew Grimberg Date: Mon, 4 May 2015 09:26:22 -0700 Subject: [PATCH] Make sure python-pip gets installed Had the python-pip install as part of an update operation. Yum won't install something that isn't already installedy when doing an update. Make sure that the python-pip happens during the install call instead. Change-Id: I337209cfc5d32839b2d20c6c25fc28359dd2cb80 Signed-off-by: Andrew Grimberg --- jenkins-scripts/devstack.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jenkins-scripts/devstack.sh b/jenkins-scripts/devstack.sh index 63e9c99644..1b8da7b070 100755 --- a/jenkins-scripts/devstack.sh +++ b/jenkins-scripts/devstack.sh @@ -6,9 +6,9 @@ wget http://copr.fedoraproject.org/coprs/tykeal/odl-updates/repo/epel-7/tykeal-o yum clean all # Install xpath -yum install -y perl-XML-XPath +yum install -y perl-XML-XPath python-pip -yum update -y python-{six,pip} +yum update -y python-six # make sure we don't require tty for sudo operations cat </etc/sudoers.d/89-jenkins-user-defaults -- 2.36.6