You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Found in oneview-ansible-collection 9.1 and still present in 9.2
oneview_sas_logical_interconnect.py line 190 is expecting an option of install_firmware but the "valid" option that is passed in the task is update_firmware. Changing like 190 to update_firmware executes a successful firmware update. Without this change the task is successful but nothing actually happens.
Example Task
- name: Installs firmware to the member interconnects of a logical interconnect
oneview_sas_logical_interconnect:
config: "{{ config }}"
sessionID: "{{ session.ansible_facts.session }}"
state: update_firmware
data:
name: "{{ sas_logical_interconnect_name }}"
firmware:
command: "Stage"
force: false
sppUri: "{{ firmware_drivers[0]['uri'] }}"
when: firmware_drivers is defined
delegate_to: localhost
The text was updated successfully, but these errors were encountered:
Found in
oneview-ansible-collection
9.1 and still present in 9.2oneview_sas_logical_interconnect.py
line 190 is expecting an option ofinstall_firmware
but the "valid" option that is passed in the task isupdate_firmware
. Changing like190
toupdate_firmware
executes a successful firmware update. Without this change the task is successful but nothing actually happens.Example Task
The text was updated successfully, but these errors were encountered: