role-mount/tasks/ext4.yml
Beth e34f8a1437 Added ext4 and bind mounts (#2)
Reviewed-on: #2
Co-authored-by: Beth <ejparker@actcur.com>
Co-committed-by: Beth <ejparker@actcur.com>
2025-03-20 14:45:58 -05:00

10 lines
No EOL
217 B
YAML

# tasks file for mounting ext4
- name: mount ext4
ansible.builtin.mount:
path: "{{ item.mount }}"
src: "{{ item.device }}"
fstype: ext4
opts: noatime
state: mounted
loop: "{{ ext4_mounts }}"