11 lines
No EOL
195 B
YAML
11 lines
No EOL
195 B
YAML
---
|
|
|
|
- name: Mount mdadm arrays
|
|
mount:
|
|
path: "{{ item.path }}"
|
|
src: "{{ item.device }}"
|
|
fstype: ext4
|
|
state: mounted
|
|
loop:
|
|
- { device: /dev/md0, path: /data }
|
|
become: yes |