setup.yml 598 B

1234567891011121314151617181920212223242526272829
  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. - name: Configure NFS
  8. lineinfile:
  9. dest: /etc/sysconfig/nfs
  10. regexp: '^RPCNFSDARGS=.*$'
  11. line: 'RPCNFSDARGS="-N 2 -N 3"'
  12. register: nfs_config
  13. - name: Restart nfs-config
  14. systemd: name=nfs-config state=restarted
  15. when: nfs_config | changed
  16. - name: Ensure exports directory exists
  17. file:
  18. path: "{{ l_nfs_base_dir }}"
  19. state: directory
  20. - name: Enable and start NFS services
  21. systemd:
  22. name: nfs-server
  23. state: started
  24. enabled: yes