ibmi_uninstall_product – Delete the objects that make up the licensed program(product)
Synopsis
the
ibmi_uninstall_product
module deletes the objects that make up the product.
Parameters
- become_user
The name of the user profile that the IBM i task will run under.
Use this option to set a user with desired privileges to run the task.
required: falsetype: str- become_user_password
Use this option to set the password of the user specified in
become_user
.required: falsetype: str- joblog
If set to
true
, output the available JOBLOG even the rc is 0(success).required: falsetype: bool- language
Specifies which national language version (NLV) objects are deleted for the licensed program specified on the LICPGM parameter.
It’s the IBM-supplied language feature codes, like German is 2924, English is 2924.
required: falsetype: strdefault: *ALL- option
Specifies which of the parts of the licensed program specified on the Product prompt (LICPGM parameter) are deleted.
required: falsetype: strdefault: *ALL- product
Specifies the seven-character identifier of the licensed program that is deleted.
required: Truetype: str- release
Specifies which version, release, and modification level of the licensed program is deleted.
required: falsetype: strdefault: *ONLY
Examples
- name: Deleting all Licensed Program Objects, run as USER1.
ibm.power_ibmi.ibmi_uninstall_product:
product: 5770QU1
become_user: 'USER1'
become_user_password: 'yourpassword'
- name: Deleting only the German (NLV 2929) objects for all options of the licensed program 5770QU1.
ibm.power_ibmi.ibmi_uninstall_product:
product: 5770QU1
language: 2929
See Also
See also
ibmi_install_product_from_savf, ibmi_save_product_to_savf_module
Return Values
- stdout
The standard output.returned: alwaystype: strsample: Product 5733D10 option 11 release *ONLY language *ALL deleted.- stderr
The standard errorreturned: When rc as non-zero(failure)type: strsample: Product 5733D10 option *ALL release *ONLY language *ALL not installed- rc
The task return code (0 means success, non-zero means failure).returned: alwaystype: intsample: 255- stdout_lines
The standard output split in lines.returned: alwaystype: listsample:["Product 5733D10 option 11 release *ONLY language *ALL deleted."]- stderr_lines
The standard error split in lines.returned: alwaystype: listsample:["Product 5733D10 option *ALL release *ONLY language *ALL not installed"]- job_log
The IBM i job log of the task executed.returned: alwaystype: listsample:[{"FROM_INSTRUCTION": "318F", "FROM_LIBRARY": "QSYS", "FROM_MODULE": "", "FROM_PROCEDURE": "", "FROM_PROGRAM": "QWTCHGJB", "FROM_USER": "CHANGLE", "MESSAGE_FILE": "QCPFMSG", "MESSAGE_ID": "CPD0912", "MESSAGE_LIBRARY": "QSYS", "MESSAGE_SECOND_LEVEL_TEXT": "Cause . . . . . : This message is used by application programs as a general escape message.", "MESSAGE_SUBTYPE": "", "MESSAGE_TEXT": "Printer device PRT01 not found.", "MESSAGE_TIMESTAMP": "2020-05-20-21.41.40.845897", "MESSAGE_TYPE": "DIAGNOSTIC", "ORDINAL_POSITION": "5", "SEVERITY": "20", "TO_INSTRUCTION": "9369", "TO_LIBRARY": "QSYS", "TO_MODULE": "QSQSRVR", "TO_PROCEDURE": "QSQSRVR", "TO_PROGRAM": "QSQSRVR"}]