glusterfs.yml 731 B

123456789101112131415161718192021222324
  1. ---
  2. - name: Install GlusterFS storage plugin dependencies
  3. yum:
  4. pkg: glusterfs-fuse
  5. state: installed
  6. when: ansible_pkg_mgr == "yum"
  7. - name: Install GlusterFS storage plugin dependencies
  8. dnf:
  9. pkg: glusterfs-fuse
  10. state: installed
  11. when: ansible_pkg_mgr == "dnf"
  12. - name: Set sebooleans to allow gluster storage plugin access from containers
  13. seboolean:
  14. name: "{{ item }}"
  15. state: yes
  16. persistent: yes
  17. when: ansible_selinux and ansible_selinux.status == "enabled"
  18. with_items:
  19. - virt_use_fusefs
  20. - virt_sandbox_use_fusefs
  21. register: sebool_result
  22. failed_when: "'state' not in sebool_result and 'msg' in sebool_result and 'SELinux boolean {{ item }} does not exist' not in sebool_result.msg"