IBM provides RACF commands for IBM DTR (z/Unit) implementation.
This article documents the equivalent Top Secret commands.
Release : 16.0
//*********************************************************************
//* DEFINE DATA SET PERMISSIONS
//* - change "BZU.#CUST." to the appropriate high level qualifier(s) of customized data sets
//* - change "BZU." to the appropriate high level qualifier(s) of installation data sets
//* - change #sysprog to the sysprog's RACF user or group ID
//*
//* Notes:
//* + BZU.SBZULINK is an APF authorized data set. It is strongly advised to protect it against updates. -> TS2.DTR.V1.SBZULINK
# HLQ stub
LISTGRP BZU ALL
ADDGROUP (BZU) OWNER(IBMUSER) SUPGROUP(SYS1) DATA('z/OS Dynamic Test Runner - HLQ STUB')
TSS Equivalent:
TSS LIST(BZU) DATA(ALL)
TSS CRE(BZU) TYPE(GROUP) DEPT(dept) NAME('z/OS Dynamic Test Runner - HLQ STUB')
# general data set protection
LISTDSD PREFIX(BZU) ALL
ADDSD 'BZU.*.**' -
UACC(READ) DATA('z/OS Dynamic Test Runner')
PERMIT 'BZU.*.**' -
CLASS(DATASET) ACCESS(ALTER) ID(#sysprog)
TSS Equivalent:
TSS WHOHAS DSN(BZU)
TSS ADD(owningacid) DSN(BZU)
TSS PER(ALL) DSN(BZU) ACC(READ)
TSS PER(#sysprog) DSN(BZU) ACC(ALL)
SETROPTS GENERIC(DATASET) REFRESH
TSS Equivalent:
* No CA Top Secret equivalent and not needed.
# show results
LISTGRP BZU ALL
LISTDSD PREFIX(BZU) ALL
TSS Equivalent:
TSS LIST(BZU) DATA(ALL)
TSS WHOHAS DSN(BZU)