added task for installing glusterfs

This commit is contained in:
2022-06-23 16:54:01 +02:00
parent 4717510179
commit bbf0a9cb16
4 changed files with 19 additions and 2 deletions

View File

@@ -12,6 +12,10 @@
- include_tasks: utilities/netdata.yml
when: netdata is defined and netdata == true
- include_tasks: utilities/snmpd.yml
- include_tasks: utilities/glusterfs.yml
when:
- glusterfs is defined
- glusterfs == true
- include_tasks: utilities/wireguard.yml
when:
- wireguard is defined

View File

@@ -0,0 +1,5 @@
- name: server | glusterfs | install glusterfs
package:
state: latest
name: "{{ item.package }}"
with_items: "{{ glusterfs_packages }}"