summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSachin Prabhu <sprabhu@redhat.com>2021-02-18 16:59:23 +0000
committerAnoop C S <anoopcs@cryptolab.net>2021-04-15 15:25:10 +0530
commit111eb4dffd4bba1da00478a5cffde45a87db5bb0 (patch)
treebe777b586fb7287571b3029417a74cb402c4d63b
parentb921989b611965cd2acc477c90d5c2f977d5d729 (diff)
downloadsamba-integration-111eb4dffd4bba1da00478a5cffde45a87db5bb0.tar.gz
samba-integration-111eb4dffd4bba1da00478a5cffde45a87db5bb0.tar.xz
samba-integration-111eb4dffd4bba1da00478a5cffde45a87db5bb0.zip
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 <sprabhu@redhat.com>
-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