role-mount/tasks/ext4.yml

10 lines
217 B
YAML
Raw Normal View History

2025-03-20 01:17:04 -05:00
# 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 }}"
2025-03-20 01:28:49 -05:00