summaryrefslogtreecommitdiffstats
path: root/vagrant/ansible/roles/node.prep/tasks/centos7.yml
diff options
context:
space:
mode:
Diffstat (limited to 'vagrant/ansible/roles/node.prep/tasks/centos7.yml')
-rw-r--r--vagrant/ansible/roles/node.prep/tasks/centos7.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/vagrant/ansible/roles/node.prep/tasks/centos7.yml b/vagrant/ansible/roles/node.prep/tasks/centos7.yml
new file mode 100644
index 0000000..6831e1f
--- /dev/null
+++ b/vagrant/ansible/roles/node.prep/tasks/centos7.yml
@@ -0,0 +1,18 @@
+- 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
+ - libselinux-python
+