1
0
Fork 0
home-stack-ansible/roles/nfs-client/tasks/main.yml

13 lines
237 B
YAML

- name: Install nfs-common
apt:
update_cache: true
name:
- nfs-common
- name: Create fstab entries
mount:
path: "{{ item.path }}"
src: "{{ item.src }}"
fstype: nfs
state: mounted
loop: "{{ nfs }}"