nfs.yml 523 B

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