xbazzi e7ba86f10a
All checks were successful
Simple Mirror to GitHub / mirror (push) Successful in 35s
Feat: add scylladb + a bunch of stuff I forgot to commit earlier
2025-08-21 23:43:52 -06:00

24 lines
469 B
YAML

---
- name: Install NFS client
ansible.builtin.package:
name: nfs-common
state: present
- name: Create mount points
ansible.builtin.file:
path: "{{ item.path }}"
state: directory
owner: root
group: root
mode: '0755'
loop: "{{ nfs_mounts }}"
- name: Mount NFS shares
ansible.posix.mount:
src: "{{ item.src }}"
path: "{{ item.path }}"
fstype: nfs
opts: "{{ item.opts }}"
state: mounted
loop: "{{ nfs_mounts }}"