vm-ansible/roles/mountpoint/tasks/main.yaml

9 lines
222 B
YAML
Raw Normal View History

2022-01-10 04:49:15 +01:00
---
- name: Mount up device by UUID
ansible.posix.mount:
path: "{{ mountpoint_path }}"
src: "UUID={{ mountpoint_uuid }}"
fstype: "{{ mountpoint_fstype }}"
opts: "{{ mountpoint_opts }}"
state: mounted