Setting up the security (STC's and Userids) for the HyperSwap Address spaces. How to translate the RACF 'RDEF STARTED' instructions into ACF2? For example
RDEF STARTED STCAPI.* UACC(NONE) STDATA(USER(STCSRV) -
GROUP(STCGRP) PRIVILEGED(NO) TRUSTED(NO) TRACE(YES))
What would be the equivalent in ACF2?
Release : 16.0
The ACF2 equivalent to the following RACF 'RDEF STARTED':
RDEF STARTED STCAPI.* UACC(NONE) STDATA(USER(STCSRV) -GROUP(STCGRP) PRIVILEGED(NO) TRUSTED(NO) TRACE(YES))
would be:
SET CONTROL(GSO)
INSERT STC.STCAPI STCID(STCAPI-) LOGONID(STCSRV) GROUP(STCGRP)
F ACF2,REFRESH(STC)