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