nfs.yml 681 B

1234567891011121314151617181920212223242526
  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. systemd:
  7. name: rpcbind
  8. state: started
  9. enabled: yes
  10. - name: Start nfs
  11. systemd:
  12. name: nfs-server
  13. state: started
  14. enabled: yes
  15. - name: Export the directories
  16. lineinfile: dest=/etc/exports
  17. regexp="^{{ osnl_mount_dir }}/{{ item }} "
  18. line="{{ osnl_mount_dir }}/{{ item }} {{osnl_nfs_export_options}}"
  19. with_sequence:
  20. start: "{{osnl_volume_num_start}}"
  21. count: "{{osnl_number_of_volumes}}"
  22. format: "{{osnl_volume_prefix}}{{osnl_volume_size}}g%04d"
  23. notify: restart nfs