Cài đặt nfs trên Ubuntu bằng Ansible Posted by By chint 26 June 2024Posted inAnsible, Linux/ UnixNo Comments 1. Tạo file play book chạy cho nfs server vi nfs.yml cat nfs.yml ---- hosts: nfs-server become: true gather_facts: no vars: nfs_shares: - '/mnt/nfs_read' - '/mnt/nfs_write' tasks: - name: Installing…