nfs.yml 602 B

12345678910111213141516
  1. ---
  2. - name: Install NFS server
  3. action: "{{ ansible_pkg_mgr }} name=nfs-utils state=present"
  4. - name: Start rpcbind
  5. service: name=rpcbind state=started enabled=yes
  6. - name: Start nfs
  7. service: name=nfs-server state=started enabled=yes
  8. - name: Export the directories
  9. lineinfile: dest=/etc/exports
  10. regexp="^{{ osnl_mount_dir }}/{{ item }} "
  11. line="{{ osnl_mount_dir }}/{{ item }} {{osnl_nfs_export_options}}"
  12. with_sequence: start={{osnl_volume_num_start}} count={{osnl_number_of_volumes}} format={{osnl_volume_prefix}}{{osnl_volume_size}}g%04d
  13. notify: restart nfs