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
* Update the doc on SDTRAN
* Auto-generated rst changes
* Fix sanity test
Signed-off-by: Stewart Francis <[email protected]>
---------
Signed-off-by: Stewart Francis <[email protected]>
Co-authored-by: Stewart Francis <[email protected]>
Copy file name to clipboardExpand all lines: docs/source/modules/stop_region.rst
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ Synopsis
22
22
--------
23
23
- Stop a CICS region by issuing a CEMT PERFORM SHUTDOWN command, or by canceling the job through the :literal:`jobs.cancel` utility provided by Z Open Automation Utilities (ZOAU). You can choose the shutdown mode from NORMAL, IMMEDIATE, or CANCEL.
24
24
- The :literal:`job\_id`\ , :literal:`job\_name`\ , or both can be used to shut down a CICS region. If mulitple jobs are running with the same name, the :literal:`job\_id` is required.
25
-
- During a NORMAL or IMMEDIATE shutdown, a shutdown assist transaction should run to enable CICS to shut down in a controlled manner. By default, the CICS-supplied shutdown assist transaction, CESD is used. You can specify a custom shutdown assist transaction in the SDTRAN system initialization parameter. The task runs until the region has successfully shut down, or until the shutdown fails.
25
+
- During a NORMAL or IMMEDIATE shutdown, a shutdown assist transaction should run to enable CICS to shut down in a controlled manner. By default, the shutdown assist transaction specified in the SDTRAN system initialization parameter is used. If this is not set, the CICS-supplied shutdown assist transaction, CESD, is used instead. The task runs until the region has successfully shut down, or until the shutdown fails.
26
26
- You must have a console installed in the CICS region so that the stop\_region module can communicate with CICS. To define a console, you must install a terminal with the CONSNAME attribute set to your TSO user ID. For detailed instructions, see \ `Defining TSO users as console devices <https://www.ibm.com/docs/en/cics-ts/latest?topic=cics-defining-tso-users-as-console-devices>`__. Add your console definition into one of the resource lists defined on the GRPLIST system initialization parameter so that it gets installed into the CICS region. Alternatively, you can use a DFHCSDUP script to update an existing CSD. This function is provided by the csd module.
27
27
- You can specify a timeout, in seconds, for CICS shutdown processing. After a request to stop CICS is issued, if CICS shutdown processing is not completed when this timeout is reached, the module completes in a failed state. By default, the stop\_region module does not use a timeout, that is, the :literal:`timeout` parameter assumes a value of -1.
28
28
@@ -88,7 +88,7 @@ no_sdtran
88
88
sdtran
89
89
The 4-character identifier of the shutdown assist transaction.
90
90
91
-
The default shutdown transaction, if neither SDTRAN nor NOSDTRAN is specified, is CESD.
91
+
If neither SDTRAN nor NOSDTRAN is specified, the value specified in the SDTRAN SIT parameter is used; or if this has not been set, the CICS-supplied shutdown assist transaction, CESD, is used instead.
Copy file name to clipboardExpand all lines: plugins/modules/stop_region.py
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -16,8 +16,9 @@
16
16
Z Open Automation Utilities (ZOAU). You can choose the shutdown mode from NORMAL, IMMEDIATE, or CANCEL.
17
17
- The O(job_id), O(job_name), or both can be used to shut down a CICS region. If mulitple jobs are running with the same name, the O(job_id) is required.
18
18
- During a NORMAL or IMMEDIATE shutdown, a shutdown assist transaction should run to enable CICS to shut down in a controlled manner.
19
-
By default, the CICS-supplied shutdown assist transaction, CESD is used. You can specify a custom shutdown assist transaction in the
20
-
SDTRAN system initialization parameter. The task runs until the region has successfully shut down, or until the shutdown fails.
19
+
By default, the shutdown assist transaction specified in the SDTRAN system initialization parameter is used. If this is not set,
20
+
the CICS-supplied shutdown assist transaction, CESD, is used instead. The task runs until the region has successfully shut down,
21
+
or until the shutdown fails.
21
22
- You must have a console installed in the CICS region so that the stop_region module can communicate with CICS. To define a console,
22
23
you must install a terminal with the CONSNAME attribute set to your TSO user ID. For detailed instructions, see
23
24
L(Defining TSO users as console devices,https://www.ibm.com/docs/en/cics-ts/latest?topic=cics-defining-tso-users-as-console-devices).
@@ -60,7 +61,8 @@
60
61
sdtran:
61
62
description:
62
63
- The 4-character identifier of the shutdown assist transaction.
63
-
- The default shutdown transaction, if neither SDTRAN nor NOSDTRAN is specified, is CESD.
64
+
- If neither SDTRAN nor NOSDTRAN is specified, the value specified in the SDTRAN SIT parameter is used; or if this has not been set, the
65
+
CICS-supplied shutdown assist transaction, CESD, is used instead.
0 commit comments