Skip to content

Commit

Permalink
address PR comments
Browse files Browse the repository at this point in the history
Signed-off-by: Andrea Tabone <[email protected]>
  • Loading branch information
taban03 committed Nov 12, 2024
1 parent 58019d0 commit 432180b
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ To validate if a PassTicket is already defined, list the APPL and PTKTDATA with
<summary>Click here for command details about validating an existing PassTicket for ACF2.</summary>

In your ESM command line interface or other security environment, execute the following commands:
1. Issue a `SHOW CLASMAP` command in TSO ACF to verify whether or not the APPL resource is defined in the GSO. Take note of the 3 character type code associated with APPL. If APPL does not appear in the `SHOW CLASMAP` listing, run the following commands:
1. Issue a `SHOW CLASMAP` command in TSO ACF to verify whether the APPL resource is defined in the GSO. Take note of the 3 character type code associated with APPL. If APPL does not appear in the `SHOW CLASMAP` listing, run the following commands:

```acf2
SET CONTROL(GSO)
INSERT CLASMAP.appl RESOURCE(APPL) RSRCTYPE(APL)
F ACF2,REFRESH(CLASMAP)
```

2. Replace 'APL' with the type code listed in the SHOW CLASMAP output:
2. Replace 'APL' with the type code listed in the `SHOW CLASMAP` output:
```acf2
SET RESOURCE(APL)
LIST LIKE(<applid>-)
Expand Down Expand Up @@ -128,7 +128,7 @@ Follow these steps to enable PassTicket Support specific to your ESM.

<summary> Click here for command details about configuring Zowe to use PassTickets using ACF2. </summary>

1. Issue a SHOW CLASMAP command in TSO ACF to to identity the 3 character type code associated with APPL. Replace 'APL' with the type code listed in the SHOW CLASMAP output:
1. Issue a `SHOW CLASMAP` command in TSO ACF to to identity the 3 character type code associated with APPL. Replace 'APL' with the type code listed in the `SHOW CLASMAP` output:
```acf2
SET RESOURCE(APL)
RECKEY <applid> ADD(UID(<user>) ALLOW)
Expand Down Expand Up @@ -199,7 +199,7 @@ Before you begin this procedure, verify that the `PTKTDATA` class and ownership
TSS ADDTO(<department>) PTKTDATA(IRRPTAUTH)
```
- **`department`**
Specifies the department for `PTKTDATA(IRRPTAUTH`. The default department is `TSODEPT1`.
Specifies the department for `PTKTDATA(IRRPTAUTH)`. The default department is `TSODEPT1`.

3. Define PassTicket for application ID _applid_:

Expand Down Expand Up @@ -379,8 +379,10 @@ TSS WHOHAS PTKTDATA(IRRPTAUTH.<applid>)
```

**ACF2:**

Replace 'APL' with the type code listed in the `SHOW CLASMAP` output
```acf2
SET RESOURCE(SAF)
SET RESOURCE(APL)
LIST LIKE(<applid>-)
SET RESOURCE(PTK)
LIST LIKE(IRRPTAUTH-)
Expand Down

0 comments on commit 432180b

Please sign in to comment.