Raspberry-Pi-IaC/roles/fstab/tasks/main.yml
2024-12-29 12:22:16 +01:00

15 lines
343 B
YAML

---
- name: Mount the external disk automatically
become: true
ansible.posix.mount:
path: /bulk
src: "PARTUUID={{ disk_part_uuid }}"
fstype: ext4
opts: defaults
state: mounted
- name: Grant permissions to created /bulk volume
become: true
ansible.builtin.file:
path: /bulk
state: directory
mode: '0777'