Model 204 security module link job stream for IBM z/OS

From m204wiki
Jump to navigation Jump to search

The LKSECRJ job stream links the Model 204 security module during installation on IBM z/OS.

See the comments in the code below for instructions on editing LKSECRJ.

//name JOB jobCardParameters //* // JCLLIB ORDER=(hlq.M204V77.RKOBJLIB) required 1 << //* //* For detailed explanations, see //* //* http://m204wiki.rocketsoftware.com/index.php/M204_inst_zOS#secr //* //LSECRJ EXEC LKM204P, // HLQ= required 2 << //* ------------------------------------------------------------------ //* This jobstream is used to link edit the xxxxPARM security module //* for RACF, ACF2, and TOPSECRET. Copy it into a local TSO library //* where you will examine lines marked '<<' to determine which //* changes you must make, and submit the job with those changes. //* This job cannot be run until the appropriate JASMJ job has //* assembled and created the object deck for the interface parameters //* for RACF, ACF2, or TOPSECRET. //* //* There are two groups of changes; those for DSNs (lines 1-2 above) //* and the SYSLIN input. The SYSLIN changes are explained in the //* comments after the SYSLIN DD *. Lines 1-2 are explained here. //* //* Lines 1-2 marked '<<' above MUST be edited and provided. //* //* 1: Change 'hlq' to the same value provided in (2) - the value //* inside parentheses will then be the DSN of the downloaded //* object library //* //* 2: Provide the high level qualifier(s) of all Model 204 //* installation DSNs //* //* (-- For Rocket Support only: filename=JZJSECR 7.7 2016/11/14 --) //* //M204LINK.SYSLIN DD * * -------- Security interfaces -------------------------------------- * Uncomment the appropriate two lines for your interface * * INCLUDE RKOBJ204(RACFPARM) RACF RACFPARM << * NAME RACFPARM(R) * * INCLUDE RKOBJ204(ACF2PARM) ACF2 ACF2PARM << * NAME ACF2PARM(R) * * INCLUDE RKOBJ204(TOPSPARM) Top Secret TOPSPARM << * NAME TOPSPARM(R) * -------- End of security interfaces -------------------------------- //*