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
Copy file name to clipboardExpand all lines: plugins/modules/platform_update.py
+14-6Lines changed: 14 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,9 @@
20
20
notes:
21
21
- The current version supports IBM Fix Central website as the update source .
22
22
- Support for additional update sources will be added in future releases.
23
+
- For any update operation, if the Ansible response status is C(ok) with C(changed) set to C(false)
24
+
and the result is C(COMPLETED_WITH_ERROR) with the reason C("update not available"),
25
+
it means the target is already up-to-date.
23
26
description:
24
27
- This module allows updating System Firmware, VIOS, SR-IOV adapters, and I/O adapters either individually or through a single consolidated update flow.
25
28
- This operations can be configured using I(platform_config) parameter.
@@ -112,7 +115,7 @@
112
115
description:
113
116
- ID of the specific adapter to be updated.
114
117
- Required only when C(all) is not specified.
115
-
type: str
118
+
type: int
116
119
subtype:
117
120
description:
118
121
- Specifies the level of update to apply.
@@ -126,7 +129,9 @@
126
129
type: dict
127
130
suboptions:
128
131
is_quick_evac:
129
-
description: Whether to enable quick evacuation.
132
+
description:
133
+
- Indicates whether to perform a quick evacuation during partition migration.
134
+
- Must always be set to C(true) when performing partition migration.
130
135
type: bool
131
136
destination_managed_system:
132
137
description: Target managed system name.
@@ -211,7 +216,7 @@
211
216
update_type: NoUpdate
212
217
update_order: 1
213
218
sriov_adapter_update:
214
-
- adapter_id: "ent0"
219
+
- adapter_id: 1
215
220
subtype: DriverOnly
216
221
217
222
- name: Update all SR-IOV adapters (Adapter) using IBM Fix Central (No Firware Update)
0 commit comments