From fedea46c9e26101f292ad966024a40d621c8f65e Mon Sep 17 00:00:00 2001 From: Bernard Cafarelli <bcafarel@redhat.com> Date: Tue, 14 Feb 2017 14:17:37 +0100 Subject: [PATCH] pip-and-virtualenv: also handle rhel distros The current pip install script only checked for centos/fedora This causes setuptools errrors like (with pbr install): "SyntaxError: '<' operator not allowed in environment markers" Explictly list distro names in that situation Change-Id: I5c894ab6152acf5441231acc1215fe00967f4f31 --- .../install.d/pip-and-virtualenv-source-install/04-install-pip | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elements/pip-and-virtualenv/install.d/pip-and-virtualenv-source-install/04-install-pip b/elements/pip-and-virtualenv/install.d/pip-and-virtualenv-source-install/04-install-pip index 704fa338b..474c89983 100755 --- a/elements/pip-and-virtualenv/install.d/pip-and-virtualenv-source-install/04-install-pip +++ b/elements/pip-and-virtualenv/install.d/pip-and-virtualenv-source-install/04-install-pip @@ -6,7 +6,7 @@ fi set -eu set -o pipefail -if [[ $DISTRO_NAME =~ (centos|fedora) ]]; then +if [[ $DISTRO_NAME =~ (fedora|centos|centos7|rhel|rhel7) ]]; then # GENERAL WARNING : mixing packaged python libraries with # pip-installed versions always creates issues. Upstream # openstack-infra uses this a lot (especially devstack) but be