nfs.yml 370 B

1234567891011
  1. ---
  2. - name: Install NFS storage plugin dependencies
  3. action: "{{ ansible_pkg_mgr }} name=nfs-utils state=present"
  4. when: not openshift.common.is_atomic | bool
  5. - name: Set seboolean to allow nfs storage plugin access from containers
  6. seboolean:
  7. name: virt_use_nfs
  8. state: yes
  9. persistent: yes
  10. when: ansible_selinux and ansible_selinux.status == "enabled"