Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Documentation] [zos_tso_command] Add REXX exec example #1065

Merged
merged 6 commits into from
Nov 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions changelogs/fragments/1065-rexx-exec-tso_command.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
minor_changes:
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

since it's only a doc change and not a change to the usage, i would categorize this as trivial.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good point, but I spoke to @fernandofloresg and @AndreMarcel99 and they recommended using minor_changes so users would see it on the release notes and be more aware of it, trivial changes don't show up. But I can still change the fragment

- zos_tso_command - add example for executing explicitly a REXX script from
a data set.
(https://github.com/ansible-collections/ibm_zos_core/pull/1065).
4 changes: 4 additions & 0 deletions docs/source/modules/zos_tso_command.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ Examples
- LISTDSD DATASET('HLQ.DATA.SET') ALL GENERIC
max_rc: 4

- name: Execute TSO command to run explicitly a REXX script from a data set.
zos_tso_command:
commands:
- EXEC HLQ.DATASET.REXX exec



Expand Down
4 changes: 4 additions & 0 deletions plugins/modules/zos_tso_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@
- LISTDSD DATASET('HLQ.DATA.SET') ALL GENERIC
max_rc: 4

- name: Execute TSO command to run a REXX script explicitly from a data set.
zos_tso_command:
commands:
- EXEC HLQ.DATASET.REXX exec
"""

from ansible.module_utils.basic import AnsibleModule
Expand Down