From 19a425ed36c30f6ccf2a3f59384a5063b151aa6d Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Tue, 30 May 2023 19:59:23 -0400 Subject: [PATCH] Add RedHat support for python role --- roles/python/tasks/RedHat.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 roles/python/tasks/RedHat.yaml diff --git a/roles/python/tasks/RedHat.yaml b/roles/python/tasks/RedHat.yaml new file mode 100644 index 0000000..4c13518 --- /dev/null +++ b/roles/python/tasks/RedHat.yaml @@ -0,0 +1,8 @@ +--- +- name: install yum packages + become: true + yum: + name: + - python3 + - python3-pip + - python3-virtualenv