role-mount/tasks/ext4.yml

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 }}"