From 92e359179b16d632aeb9543a172f8677fc6ebf40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iwan=20Cl=C3=A9ment?= Date: Tue, 13 Nov 2018 10:50:38 +0000 Subject: [PATCH] Avec un bon pip --- softwares/docker-ce.sls | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/softwares/docker-ce.sls b/softwares/docker-ce.sls index 9eb1989..2847167 100644 --- a/softwares/docker-ce.sls +++ b/softwares/docker-ce.sls @@ -4,6 +4,34 @@ SELinux for Redhat: cmd.run: - name: subscription-manager repos --enable=rhel-7-server-extras-rpms + +Repo for PIP on RHEL: + cmd.run: + - name: subscription-manager repos --enable rhel-server-rhscl-7-rpms + +Pipons le python: + pkg.installed: + {% if grains['osmajorrelease'] == 6 %} + - name: python27-pip + {% else %} + - pkgs: + - python27-python-pip + - scl-utils + {% endif %} + +# Upgrade pip: +# cmd.run: +# {% if grains['osmajorrelease'] == 7 %} +# - name: "pip install --upgrade pip -i {{PIP_REPO_URL}} --trusted-host {{PIP_REPO_SERVER}}" +# - env: +# - LD_LIBRARY_PATH=/opt/rh/python27/root/usr/lib64:$LD_LIBRARY_PATH +# - PATH=/opt/rh/python27/root/usr/bin:$PATH +# - PKG_CONFIG_PATH=/opt/rh/python27/root/usr/lib64/pkgconfig +# - XDG_DATA_DIRS=/opt/rh/python27/root/usr/share:$XDG_DATA_DIRS +# - X_SCLS='python27 ' +# {% else %} +# - name: "pip2.7 install --upgrade pip -i {{PIP_REPO_URL}} --trusted-host {{PIP_REPO_SERVER}}" +# {% endif %} {% endif %} {% if grains['os'] == 'Debian' %}