nfs.yml 1021 B

1234567891011121314151617181920212223242526
  1. ---
  2. - name: Install NFS storage plugin dependencies
  3. package: name=nfs-utils state=present
  4. when: not openshift.common.is_atomic | bool
  5. - name: Check for existence of seboolean
  6. command: getsebool {{ item }}
  7. register: getsebool_status
  8. when: ansible_selinux and ansible_selinux.status == "enabled"
  9. failed_when: false
  10. changed_when: false
  11. with_items:
  12. - virt_use_nfs
  13. - virt_sandbox_use_nfs
  14. - name: Set seboolean to allow nfs storage plugin access from containers
  15. seboolean:
  16. name: "{{ item.item }}"
  17. state: yes
  18. persistent: yes
  19. # We need to detect whether or not the boolean is an alias, since `seboolean`
  20. # will error if it is an alias. We do this by inspecting stdout for the boolean name,
  21. # since getsebool prints the resolved name. (At some point Ansible's seboolean module
  22. # should learn to deal with aliases)
  23. when: ansible_selinux and ansible_selinux.status == "enabled" and item.rc == 0 and item.stdout.find(item.item) != -1
  24. with_items: "{{ getsebool_status.results }}"