summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSachin Prabhu <sprabhu@redhat.com>2021-02-18 16:51:04 +0000
committerAnoop C S <anoopcs@cryptolab.net>2021-04-15 15:25:10 +0530
commite50baa71175bfa52c7b77340a4c1646c92020526 (patch)
treec52c0b12a6768a112a99fc7061430c29c202a909
parent639b0a4e99b35e5fff72b956335ce6fa149f65dc (diff)
downloadsamba-integration-e50baa71175bfa52c7b77340a4c1646c92020526.tar.gz
samba-integration-e50baa71175bfa52c7b77340a4c1646c92020526.tar.xz
samba-integration-e50baa71175bfa52c7b77340a4c1646c92020526.zip
Add CentOS 8 specific actions for node.prep
Signed-off-by: Sachin Prabhu <sprabhu@redhat.com>
-rw-r--r--vagrant/ansible/roles/node.prep/tasks/centos8.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/vagrant/ansible/roles/node.prep/tasks/centos8.yml b/vagrant/ansible/roles/node.prep/tasks/centos8.yml
new file mode 100644
index 0000000..9b3771b
--- /dev/null
+++ b/vagrant/ansible/roles/node.prep/tasks/centos8.yml
@@ -0,0 +1,17 @@
+- name: Install GlusterFS rpms
+ yum:
+ name: "{{ gluster_rpms }}"
+ state: latest
+ vars:
+ gluster_rpms:
+ - glusterfs-server
+
+- name: Install basic tools
+ yum:
+ name: "{{ tools }}"
+ state: latest
+ vars:
+ tools:
+ - lvm2
+ - firewalld
+ - python3-libsemanage