ibmi_fix_group_check – Retrieve the latest PTF group information from PSP server.
Synopsis
The
ibmi_fix_group_check
module retrieve latest PTF group information from PSP(Preventive Service Planning) server.Refer to https://www.ibm.com/support/pages/node/667567 for more details of PSP.
ALL PTF groups or specific PTF groups are supported.
Parameters
- groups
The list of the PTF groups number.
required: Falsetype: listelements: strdefault: [’*ALL’]- timeout
Timeout in seconds for URL request.
required: Falsetype: intdefault: 60- validate_certs
If set to
False
, the SSL certificate verification will be disabled. It’s recommended for test scenario.It’s recommended to enable the SSL certificate verification for security concern.
required: Falsetype: booldefault: True
Examples
- name: Check specific PTF groups
ibm.power_ibmi.ibmi_fix_group_check:
groups:
- "SF12345"
- name: Check the PTF groups without certificate verification
ibm.power_ibmi.ibmi_fix_group_check:
groups:
- "SF12345"
validate_certs: False
Notes
Note
Ansible hosts file need to specify ansible_python_interpreter=/QOpenSys/pkgs/bin/python3.
If the module is delegated to an IBM i server and SSL certificate verification is enabled, package ca-certificates-mozilla
is required.
Return Values
- stderr
The task standard errorreturned: alwaystype: strsample: PTF groups SF12345 does not exist- rc
The task return code (0 means success, non-zero means failure)returned: alwaystype: int- count
The number of PTF groups which has been retrievedreturned: always.type: intsample: 1- group_info
PTF group information.returned: When rc is zero.type: listsample:[{"PTF_GROUP_LEVEL": "46", "PTF_GROUP_NUMBER": "SF99115", "RELEASE": "R610", "RELEASE_DATE": "09/28/2015", "TITLE": "610 IBM HTTP Server for i"}]