From ebc8851d0cecb00f2f4a343ae53014a268ff9789 Mon Sep 17 00:00:00 2001 From: David Galloway Date: Fri, 20 Dec 2019 12:35:24 -0500 Subject: [PATCH] ansible: Install distro-appropriate virtualenv package version Signed-off-by: David Galloway --- ansible/examples/slave.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ansible/examples/slave.yml b/ansible/examples/slave.yml index e749e0515..cf9b0ab71 100644 --- a/ansible/examples/slave.yml +++ b/ansible/examples/slave.yml @@ -185,7 +185,6 @@ - epel-release - java-1.8.0-openjdk - git - - python-virtualenv - libtool #- rpm-sign - autoconf @@ -259,6 +258,7 @@ with_items: - jq - python-pip + - python-virtualenv when: - ansible_os_family == "RedHat" - ansible_distribution_major_version|int <= 7 @@ -272,6 +272,7 @@ with_items: - jq - python3-pip + - python3-virtualenv when: - ansible_os_family == "RedHat" - ansible_distribution_major_version|int >= 8 -- 2.47.3