nfs.yml 630 B

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