- ---
- - name: Install NFS server
- yum: name=nfs-utils state=present
- - name: Start rpcbind
- service: name=rpcbind state=started enabled=yes
- - name: Start nfs
- service: name=nfs-server state=started enabled=yes
- - name: Export the directories
- lineinfile: dest=/etc/exports
- regexp="^{{ osnl_mount_dir }}/{{ item }} "
- line="{{ osnl_mount_dir }}/{{ item }} {{osnl_nfs_export_options}}"
- with_sequence: start={{osnl_volume_num_start}} count={{osnl_number_of_volumes}} format={{osnl_volume_prefix}}{{osnl_volume_size}}g%04d
- notify: restart nfs
|