summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vagrant/ansible/roles/client.prep/tasks/centos8.yml17
1 files changed, 17 insertions, 0 deletions
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