nfs.yml 726 B

12345678910111213141516171819202122232425262728
  1. ---
  2. - name: Install NFS server
  3. package: name=nfs-utils state=present
  4. when: not openshift.common.is_containerized | bool
  5. register: result
  6. until: result | success
  7. - name: Start rpcbind
  8. systemd:
  9. name: rpcbind
  10. state: started
  11. enabled: yes
  12. - name: Start nfs
  13. systemd:
  14. name: nfs-server
  15. state: started
  16. enabled: yes
  17. - name: Export the directories
  18. lineinfile: dest=/etc/exports
  19. regexp="^{{ osnl_mount_dir }}/{{ item }} "
  20. line="{{ osnl_mount_dir }}/{{ item }} {{osnl_nfs_export_options}}"
  21. with_sequence:
  22. start: "{{osnl_volume_num_start}}"
  23. count: "{{osnl_number_of_volumes}}"
  24. format: "{{osnl_volume_prefix}}{{osnl_volume_size}}g%04d"
  25. notify: restart nfs