15 lines
343 B
YAML
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'
|