Running Debug Manager as a started task by using environment variables

Starting from z/OS® Debugger 16.0.4, Debug Manager supports passing parameters through environment variables.

During its startup, Debug Manager checks whether any environment variable has the same name as its parameter, such as INTERNALPORT, EXTERNALPORT. This approach allows passing parameters by using XL C/C++ _CEE_ENVFILE parameter as follows.
Figure 1. DBGMGR: Debug Manager started task by using environment variables
...
//*
//DBGMGR   EXEC PGM=EQAZPCM,REGION=0M,TIME=NOLIMIT,
//            PARM=('&LEPRM,ENVAR("_CEE_ENVFILE=DD:ENVARS")/')
//ENVARS  DD *
INTERNALPORT=5336
EXTERNALPORT=5335
TRACELEVEL=DEBUG
SAFCLASS=FACILITY
HUBIP=1.2.3.4
HUBPORT=5337
VIPA=OFF
TZ=EST5EDT
...