Skip to content

Commit e437995

Browse files
ledinaGitHub Enterprise
authored andcommitted
Merge pull request ansible-collections#155 from cssh/erik-edits-feb-2024
Erik edits feb 2024
2 parents 8a070ca + a7a78ae commit e437995

19 files changed

+365
-371
lines changed

docs/source/installation.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
66
Installation
77
============
8-
Always check that your control node has fulfilled the :doc:`requirements` before installing the **IBM® z/OS® CICS® collection**.
8+
Always check that your control node has met the :doc:`requirements` before you install the **IBM® z/OS® CICS® collection**.
99

10-
Then, follow the guidance to install the collection from Ansible® Galaxy or a custom Galaxy server. More ways to install an Ansible collection are documented at `installing collections`_.
10+
Then, follow the guidance to install the collection from Ansible® Galaxy or from a custom Galaxy server. More ways to install an Ansible collection are documented in `Installing collections`_.
1111

1212

1313
Installing from Ansible Galaxy
1414
------------------------------
15-
This is the quickest way to install the CICS collection. From your CLI, enter:
15+
This is the quickest way to install the CICS collection. From your CLI, enter the following command:
1616

1717
.. code-block:: sh
1818
@@ -38,7 +38,7 @@ By default, collections are installed in ``~/.ansible/collections``. After insta
3838
3939
4040
41-
To install with customization, such as specifying another installation path or using a playbook, see `installing collections`_.
41+
To install with customization, such as specifying another installation path or using a playbook, see `Installing collections`_.
4242

4343
.. _installing collections:
4444
https://docs.ansible.com/ansible/latest/user_guide/collections_using.html#installing-collections-with-ansible-galaxy
@@ -57,7 +57,7 @@ Ansible searches for ``ansible.cfg`` in the following locations in this order:
5757
* ~/.ansible.cfg (in the home directory)
5858
* /etc/ansible/ansible.cfg
5959

60-
Instructions on how to configure the server list in ``ansible.cfg`` can be found at `configuring the ansible-galaxy client`_. Available options in the Ansible configuration file can be found at `Ansible Configuration Settings`_.
60+
Instructions on how to configure the server list in ``ansible.cfg`` can be found in `Configuring the ansible-galaxy client`_. Available options in the Ansible configuration file can be found in `Ansible Configuration Settings`_.
6161

6262
.. note:: When hosting a private Galaxy server, available content is not always consistent with what is available on the community Galaxy server.
6363

docs/source/modules.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ requirements of the managed node. For more detail see :doc:`requirements_managed
1717
.. _CMCI REST API:
1818
https://www.ibm.com/docs/en/cics-ts/latest?topic=cmci-how-it-works-rest-api
1919

20-
The region provisioning modules make use of two defaults groups that allow a
20+
The region provisioning modules use two defaults groups that allow a
2121
user to specify the location of a CICS installation and a high level qualifier
2222
for all region data sets to be created under. The example below shows how to
2323
use these default groups within the *cics_global_catalog* module.
@@ -34,17 +34,17 @@ use these default groups within the *cics_global_catalog* module.
3434
state: "initial"
3535

3636

37-
In the above example the global catalog will be created at the data set location
38-
*REGIONS.ABCD0001.DFHGCD* and the CICS load libraries can be found at the
39-
location *CICSTS61.CICS*, meaning the library SDFHLOAD could be found at
37+
In the above example, the global catalog will be created at the data set location
38+
*REGIONS.ABCD0001.DFHGCD*, and the CICS load libraries can be found at the
39+
location *CICSTS61.CICS*, which means that the SDFHLOAD library could be found at
4040
*CICSTS61.CICS.SDFHLOAD*.
4141

42-
These groups can be placed in a `module_defaults`_ section meaning all
42+
These groups can be placed in a `module_defaults`_ section, which means that all
4343
the CICS provisioning modules will use the same high level qualifier for the
44-
regions data sets, and the location of the CICS installation only has to be
44+
region data sets, and the location of the CICS installation only has to be
4545
declared once for all the modules.
4646

47-
To override a specific task's data set location and/or name you can provide an
47+
To override the data set location or name for a specific task, you can provide an
4848
additional parameter to the ``region_data_sets`` group as shown in the example
4949
for a global catalog data set below.
5050

docs/source/modules/auxiliary_temp.rst

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ Synopsis
1414

1515
Create and remove the \ `auxiliary temporary storage <https://www.ibm.com/docs/en/cics-ts/latest?topic=sets-defining-auxiliary-temporary-storage-data-set>`__\ data set used by a CICS® region.
1616

17-
Useful when provisioning or de-provisioning a CICS region.
17+
You can use this module when provisioning or de-provisioning a CICS region.
1818

19-
Use the \ :literal:`state`\ option to specify the intended state for the auxiliary temp data set. For example, \ :literal:`state=initial`\ will create a auxiliary temp data set if it doesn't yet exist.
19+
Use the \ :literal:`state`\ option to specify the intended state for the auxiliary temporary storage data set. For example, \ :literal:`state=initial`\ will create an auxiliary temporary storage data set if it doesn't exist.
2020

2121

2222

@@ -27,56 +27,56 @@ Parameters
2727
----------
2828

2929
space_primary (False, int, 200)
30-
The size of the auxiliary temporary storage data set's primary space allocation. Note, this is just the value; the unit is specified with \ :literal:`space\_type`\ .
30+
The size of the primary space allocated to the auxiliary temporary storage data set. Note that this is just the value; the unit is specified with \ :literal:`space\_type`\ .
3131

32-
This option only takes effect when the auxiliary temporary storage is being created. If it already exists, it has no effect.
32+
This option takes effect only when the auxiliary temporary storage data set is being created. If the data set already exists, the option has no effect.
3333

34-
The auxiliary temporary storage data set's secondary space allocation is set to 10.
34+
The size value of the secondary space allocation for the auxiliary temporary storage data set is 10; the unit is specified with \ :literal:`space\_type`\ .
3535

3636

3737
space_type (False, str, REC)
38-
The unit portion of the auxiliary temporary storage data set size. Note, this is just the unit; the value is specified with \ :literal:`space\_primary`\ .
38+
The unit portion of the auxiliary temporary storage data set size. Note that this is just the unit; the value is specified with \ :literal:`space\_primary`\ .
3939

40-
This option only takes effect when the auxiliary temporary storage is being created. If it already exists, it has no effect.
40+
This option takes effect only when the auxiliary temporary storage data set is being created. If the data set already exists, the option has no effect.
4141

4242
The size can be specified in megabytes (\ :literal:`M`\ ), kilobytes (\ :literal:`K`\ ), records (\ :literal:`REC`\ ), cylinders (\ :literal:`CYL`\ ), or tracks (\ :literal:`TRK`\ ).
4343

4444

4545
region_data_sets (True, dict, None)
46-
The location of the region's data sets using a template, e.g. \ :literal:`REGIONS.ABCD0001.\<\< data\_set\_name \>\>`\ .
46+
The location of the region data sets to be created using a template, for example, \ :literal:`REGIONS.ABCD0001.\<\< data\_set\_name \>\>`\ .
47+
48+
If you want to use a data set that already exists, ensure that the data set is an auxiliary temporary storage data set.
4749

4850

4951
template (False, str, None)
50-
The base location of the region's data sets with a template.
52+
The base location of the region data sets with a template.
5153

5254

5355
dfhtemp (False, dict, None)
5456
Overrides the templated location for the auxiliary temporary storage data set.
5557

5658

5759
dsn (False, str, None)
58-
Data set name of the auxiliary temporary storage to override the template.
60+
The data set name of the auxiliary temporary storage to override the template.
5961

6062

6163

6264

6365
cics_data_sets (False, dict, None)
64-
The name of the \ :literal:`SDFHLOAD`\ data set, e.g. \ :literal:`CICSTS61.CICS.SDFHLOAD`\ .
66+
The name of the \ :literal:`SDFHLOAD`\ library of the CICS installation, for example, \ :literal:`CICSTS61.CICS.SDFHLOAD`\ .
6567

6668

6769
template (False, str, None)
68-
Templated location of the cics install data sets.
70+
The templated location of the \ :literal:`SDFHLOAD`\ library.
6971

7072

7173
sdfhload (False, str, None)
72-
Location of the sdfhload data set.
73-
74-
Overrides the templated location for sdfhload.
74+
The location of the \ :literal:`SDFHLOAD`\ library to override the template.
7575

7676

7777

7878
state (True, str, None)
79-
The desired state for the auxiliary temporary storage, which the module will aim to achieve.
79+
The intended state for the auxiliary temporary storage data set, which the module will aim to achieve.
8080

8181
\ :literal:`absent`\ will remove the auxiliary temporary storage data set entirely, if it already exists.
8282

@@ -132,7 +132,7 @@ failed (always, bool, )
132132

133133

134134
start_state (always, dict, )
135-
The state of the auxiliary temporary storage before the task runs.
135+
The state of the auxiliary temporary storage before the Ansible task runs.
136136

137137

138138
vsam (always, bool, )
@@ -145,7 +145,7 @@ start_state (always, dict, )
145145

146146

147147
end_state (always, dict, )
148-
The state of the auxiliary temporary storage at the end of the task.
148+
The state of the auxiliary temporary storage at the end of the Ansible task.
149149

150150

151151
vsam (always, bool, )
@@ -158,7 +158,7 @@ end_state (always, dict, )
158158

159159

160160
executions (always, list, )
161-
A list of program executions performed during the task.
161+
A list of program executions performed during the Ansible task.
162162

163163

164164
name (always, str, )

docs/source/modules/csd.rst

Lines changed: 23 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ csd -- Create, remove, and manage the CICS CSD
1212
Synopsis
1313
--------
1414

15-
Create, remove, and manage the \ `csd <https://www.ibm.com/docs/en/cics-ts/6.1?topic=configuring-setting-up-shared-data-sets-csd-sysin>`__\ data set used by a CICS® region.
15+
Create, remove, and manage the \ `CICS system definition data set <https://www.ibm.com/docs/en/cics-ts/6.1?topic=configuring-setting-up-shared-data-sets-csd-sysin>`__\ (CSD) used by a CICS® region.
1616

17-
Useful when provisioning or de-provisioning a CICS region, or when managing the state of the CSD during upgrades or restarts.
17+
You can use this module when provisioning or de-provisioning a CICS region, or when managing the state of the CSD during upgrades or restarts.
1818

19-
Use the \ :literal:`state`\ option to specify the intended state for the CSD. For example, \ :literal:`state=initial`\ will create and initialize a CSD data set if it doesn't yet exist, or it will take an existing CSD and empty it of all records.
19+
Use the \ :literal:`state`\ option to specify the intended state for the CSD. For example, \ :literal:`state=initial`\ will create and initialize a CSD if it doesn't exist, or it will take an existing CSD and empty it of all records.
2020

2121

2222

@@ -27,60 +27,58 @@ Parameters
2727
----------
2828

2929
space_primary (False, int, 4)
30-
The size of the CSD data set's primary space allocation. Note, this is just the value; the unit is specified with \ :literal:`space\_type`\ .
30+
The size of the primary space allocated to the CSD. Note that this is just the value; the unit is specified with \ :literal:`space\_type`\ .
3131

32-
This option only takes effect when the CSD is being created. If it already exists, it has no effect.
32+
This option takes effect only when the CSD is being created. If the CSD already exists, the option has no effect.
3333

34-
The CSD data set's secondary space allocation is set to 1.
34+
The size value of the secondary space allocation for the CSD is 1; the unit is specified with \ :literal:`space\_type`\ .
3535

3636

3737
space_type (False, str, M)
38-
The unit portion of the CSD data set size. Note, this is just the unit; the value is specified with \ :literal:`space\_primary`\ .
38+
The unit portion of the CSD size. Note that this is just the unit; the value is specified with \ :literal:`space\_primary`\ .
3939

40-
This option only takes effect when the CSD is being created. If it already exists, it has no effect.
40+
This option takes effect only when the CSD is being created. If the CSD already exists, the option has no effect.
4141

4242
The size can be specified in megabytes (\ :literal:`M`\ ), kilobytes (\ :literal:`K`\ ), records (\ :literal:`REC`\ ), cylinders (\ :literal:`CYL`\ ), or tracks (\ :literal:`TRK`\ ).
4343

4444

4545
region_data_sets (True, dict, None)
46-
The location of the region's data sets using a template, e.g. \ :literal:`REGIONS.ABCD0001.\<\< data\_set\_name \>\>`\ .
46+
The location of the region data sets to be created using a template, for example, \ :literal:`REGIONS.ABCD0001.\<\< data\_set\_name \>\>`\ .
4747

4848

4949
template (False, str, None)
50-
The base location of the region's data sets with a template.
50+
The base location of the region data sets with a template.
5151

5252

5353
dfhcsd (False, dict, None)
54-
Overrides the templated location for the CSD data set.
54+
Overrides the templated location for the CSD.
5555

5656

5757
dsn (False, str, None)
58-
Data set name of the CSD to override the template.
58+
The data set name of the CSD to override the template.
5959

6060

6161

6262

6363
cics_data_sets (True, dict, None)
64-
The name of the \ :literal:`SDFHLOAD`\ data set, e.g. \ :literal:`CICSTS61.CICS.SDFHLOAD`\ .
64+
The name of the \ :literal:`SDFHLOAD`\ library of the CICS installation, for example, \ :literal:`CICSTS61.CICS.SDFHLOAD`\ .
6565

6666

6767
template (False, str, None)
68-
Templated location of the cics install data sets.
68+
The templated location of the \ :literal:`SDFHLOAD`\ library.
6969

7070

7171
sdfhload (False, str, None)
72-
Location of the sdfhload data set.
73-
74-
Overrides the templated location for sdfhload.
72+
The location of the \ :literal:`SDFHLOAD`\ library to override the template.
7573

7674

7775

7876
state (True, str, None)
79-
The desired state for the CSD, which the module will aim to achieve.
77+
The intended state for the CSD, which the module will aim to achieve.
8078

81-
\ :literal:`absent`\ will remove the CSD data set entirely, if it already exists.
79+
\ :literal:`absent`\ will remove the CSD entirely, if it already exists.
8280

83-
\ :literal:`initial`\ will create the CSD data set if it does not already exist, and initialise it using dfhcsdup
81+
\ :literal:`initial`\ will create the CSD if it does not already exist, and initialize it by using DFHCSDUP.
8482

8583
\ :literal:`warm`\ will retain an existing CSD in its current state.
8684

@@ -146,33 +144,33 @@ failed (always, bool, )
146144

147145

148146
start_state (always, dict, )
149-
The state of the CSD before the task runs.
147+
The state of the CSD before the Ansible task runs.
150148

151149

152150
vsam (always, bool, )
153151
True if the data set is a VSAM data set.
154152

155153

156154
exists (always, bool, )
157-
True if the CSD data set exists.
155+
True if the CSD exists.
158156

159157

160158

161159
end_state (always, dict, )
162-
The state of the CSD at the end of the task.
160+
The state of the CSD at the end of the Ansible task.
163161

164162

165163
vsam (always, bool, )
166164
True if the data set is a VSAM data set.
167165

168166

169167
exists (always, bool, )
170-
True if the CSD data set exists.
168+
True if the CSD exists.
171169

172170

173171

174172
executions (always, list, )
175-
A list of program executions performed during the task.
173+
A list of program executions performed during the Ansible task.
176174

177175

178176
name (always, str, )

0 commit comments

Comments
 (0)