Files
gitlab-mirror/roles/mount_device/tasks/main.yml
2025-12-28 22:04:14 +04:00

10 lines
246 B
YAML

---
- name: "Mount devices"
loop: "{{ mount_device_devices }}"
ansible.posix.mount:
fstype: "{{ item.fstype }}"
path: "{{ item.where }}"
src: "{{ item.what }}"
opts: "{{ item.opts | join(',') }}"
state: "{{ item.state }}"