From 111eb4dffd4bba1da00478a5cffde45a87db5bb0 Mon Sep 17 00:00:00 2001 From: Sachin Prabhu Date: Thu, 18 Feb 2021 16:59:23 +0000 Subject: Add CentOS 8 specific actions for client.prep Also add make since the CentOS8 images used by vagrant does not include make. Signed-off-by: Sachin Prabhu --- vagrant/ansible/roles/client.prep/tasks/centos8.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 vagrant/ansible/roles/client.prep/tasks/centos8.yml diff --git a/vagrant/ansible/roles/client.prep/tasks/centos8.yml b/vagrant/ansible/roles/client.prep/tasks/centos8.yml new file mode 100644 index 0000000..321d85b --- /dev/null +++ b/vagrant/ansible/roles/client.prep/tasks/centos8.yml @@ -0,0 +1,17 @@ +- name: Install required packages + yum: + name: + - glusterfs-fuse + - cifs-utils + - samba-test + - python3-pip + - git + - make + state: latest + +- name: Install Python 3 modules + pip: + executable: /usr/bin/pip3 + name: + - PyYAML + - iso8601 -- cgit