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

13 lines
237 B
YAML
Raw Normal View History

2024-10-14 22:19:06 +00:00
- 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 }}"