Update to 2024-08-28 12:00

This commit is contained in:
Daniel Berteaud
2024-08-28 12:00:16 +02:00
parent 676ba6662d
commit edfd9ce542
10 changed files with 42 additions and 10 deletions

BIN
roles/common/files/mnv_cli Normal file

Binary file not shown.

View File

@@ -7,6 +7,9 @@
- set_fact:
lsi_controllers: "{{ controllers | select('match', '(?i).*(lsi|megaraid).*') | list | unique }}"
- set_fact:
marvell_nvme_controllers: "{{ controllers | select('match', '(?i).*Marvell.*Non-Volatile memory controller.*') | list | unique }}"
- include_tasks: hardware_{{ ansible_os_family }}.yml
- name: Remove MegaCli package
@@ -15,4 +18,6 @@
- lsi_controllers | length > 0
- megacli_installed_version.stdout != megacli_version
...
- name: Copy nmv_cli
copy: src=mnv_cli dest=/usr/local/bin/mnv_cli owner=root group=root mode=755
when: marvell_nvme_controllers | length > 0