How to convert the RACF IWNRACF5 job to Top Secret Commands.
Related IBM Copy Services Manager for z/OS Articles:
136788 Top Secret Converting the RACF IWNRACFC job commands for IBM CSM
136782 Top Secret Converting the RACF IWNRACF2 job commands for IBM CSM
136783 Top Secret Converting the RACF IWNRACF3 job commands for IBM CSM
136785 Top Secret Converting the RACF IWNRACF4 job commands for IBM CSM
136786 Top Secret Converting the RACF IWNRACF5 job commands for IBM CSM
Release : 16.0
Component : CA Top Secret for z/OS
//IWNRACF5 JOB <job parameters>
//*********************************************************************
//* LICENSED MATERIALS - PROPERTY OF IBM *
//* THIS PRODUCT CONTAINS "RESTRICTED MATERIALS OF IBM" *
//* (C) COPYRIGHT IBM CORPORATION 1999, 2016. *
//* ALL RIGHTS RESERVED. *
//* *
//* IBM Copy Services Manager for z/OS *
//* *
//* CAUTION: This is neither a JCL procedure nor a complete job. *
//* Before you use this job step, make the following modifications: *
//* *
//* This job defines the user ID that can be used to authenticate *
//* the Copy Services Manager to the HyperSwap Sockets Server. *
//* *
//* *
//* 1) Change the job card to meet your system requirements. *
//* 2) Replace the following variables: *
//* #user_id - User ID that is used for the Copy Services *
//* Manager host connection. *
//* - Additional Copy Services Manager host *
//* connection user IDs can be created and *
//* added by using this job. *
//* #group_name - Group name for the Copy Services Manager *
//* host connection user ID. *
//* #csm_pw - Initial password for the Copy Services *
//* Manager host connection user ID. *
//* #interval - The number of days before the password must *
//* be changed. Specify NOINTERVAL if you *
//* never want the password to expire. *
//* *
//*********************************************************************
/*
//CSMHOST EXEC PGM=IKJEFT01
//SYSLBC DD DSN=SYS1.BRODCAST,DISP=SHR
//SYSTSPRT DD SYSOUT=*
//SYSTSIN DD *
/* Define the Copy Services Manager host connection user. */
ADDGROUP #group_name
ADDUSER #user_id DFLTGRP(#group_name) +
NAME('Copy Services Manager Host Connection User ID')
ALU #user_id PASSWORD(#csm_pw) NOEXPIRED
PASSWORD INTERVAL(#interval) USER(#user_id)
TSS CRE(#user_id) TYPE(USER) NAME('Copy Services Mangr') PASS(XXXX,0) DEPT(dept_acid)
TSS CRE(#group_name) TYPE(GROUP) NAME('#group_name') DEPT(dept_acid)
TSS ADD(#group_name) GID(xx)
TSS ADD(#user_id) UID(XX)
TSS ADD(#user_id) GROUP(#group_name) DFLTGRP(#group_name) HOME(/) OMVSPGM(/bin/sh)
/* Permit access to ANT.REPLICATIONMANAGER. */
RDEFINE FACILITY ANT.REPLICATIONMANAGER UACC(NONE)
PERMIT ANT.REPLICATIONMANAGER CLASS(FACILITY) +
ID(#user_id) ACCESS(CONTROL)
SETROPTS RACLIST(FACILITY) REFRESH
TSS ADD(owning_dept) IBMFAC(ANT.)....unless already owned
TSS PER(#user_id) IBMFAC(ANT.REPLICATIONMANAGER) ACC(CONTROL)
/*