setup.yml 643 B

12345678910111213141516171819202122232425262728293031
  1. ---
  2. - name: setup firewall
  3. include: firewall.yml
  4. static: yes
  5. - name: Install nfs-utils
  6. package: name=nfs-utils state=present
  7. register: result
  8. until: result | success
  9. - name: Configure NFS
  10. lineinfile:
  11. dest: /etc/sysconfig/nfs
  12. regexp: '^RPCNFSDARGS=.*$'
  13. line: 'RPCNFSDARGS="-N 2 -N 3"'
  14. register: nfs_config
  15. - name: Restart nfs-config
  16. systemd: name=nfs-config state=restarted
  17. when: nfs_config | changed
  18. - name: Ensure exports directory exists
  19. file:
  20. path: "{{ l_nfs_base_dir }}"
  21. state: directory
  22. - name: Enable and start NFS services
  23. systemd:
  24. name: nfs-server
  25. state: started
  26. enabled: yes