17 lines
439 B
YAML
17 lines
439 B
YAML
---
|
|
- name: Partition
|
|
ansible.builtin.include_tasks: partition.yml
|
|
when: gpu_model_storage_devices | length > 0
|
|
|
|
- name: RAID
|
|
ansible.builtin.include_tasks: raid.yml
|
|
when: gpu_model_storage_devices | length > 0
|
|
|
|
- name: Filesystem
|
|
ansible.builtin.include_tasks: filesystem.yml
|
|
when: gpu_model_storage_devices | length > 0
|
|
|
|
- name: Mount
|
|
ansible.builtin.include_tasks: mount.yml
|
|
when: gpu_model_storage_devices | length > 0
|