nfs.yml 584 B

1234567891011121314151617
  1. ---
  2. - name: Install NFS server
  3. action: "{{ ansible_pkg_mgr }} name=nfs-utils state=present"
  4. when: not openshift.common.is_containerized | bool
  5. - name: Start rpcbind on Fedora/Red Hat
  6. service: name=rpcbind state=started enabled=yes
  7. - name: Start nfs on Fedora/Red Hat
  8. service: name=nfs-server state=started enabled=yes
  9. - name: Export the directories
  10. lineinfile: dest=/etc/exports
  11. regexp="^{{ mount_dir }}/{{ item.name }} "
  12. line="{{ mount_dir }}/{{ item.name }} {{nfs_export_options}}"
  13. with_items: "{{ partition_pool }}"
  14. notify: restart nfs