9 lines
222 B
YAML
9 lines
222 B
YAML
|
---
|
||
|
- name: Mount up device by UUID
|
||
|
ansible.posix.mount:
|
||
|
path: "{{ mountpoint_path }}"
|
||
|
src: "UUID={{ mountpoint_uuid }}"
|
||
|
fstype: "{{ mountpoint_fstype }}"
|
||
|
opts: "{{ mountpoint_opts }}"
|
||
|
state: mounted
|