The Defense Manager daemon cataloged procedure (optional)

If the DMD is to be started by a procedure, update the cataloged procedure, DMD, by copying the sample in SEZAINST(DMD) to your system or recognized PROCLIB. Specify the DMD parameters and change the data set names that are appropriate for your local configuration. See SEZAINST(EZARACF) for external security manager considerations for started procedures. After you have started the DMD procedure, you can specify a different DMD configuration file by using the MODIFY command with the FILE parameter. For example:
MODIFY DMD,REFRESH,FILE='/etc/security/dm.conf2'
Figure 1. DMD cataloged procedure
//DMD PROC
//*
//* IBM Communications Server for z/OS
//* SMP/E distribution name: EZADMD
//*
Start of change//* 5650-ZOS Copyright IBM Corp. 2008, 2013End of change
//* Licensed Materials - Property of IBM
Start of change//* Status = CSV2R1End of change
//*
//*
//DMD EXEC PGM=DMD,REGION=0K,TIME=NOLIMIT,
Start of change// PARM='ENVAR("_CEE_ENVFILE_S=DD:STDENV")/'
//*
//* Provide environment variables to run with the desired
//* configuration. As an example, the data set or file specified byEnd of change
//* STDENV could contain:
//*
//* DMD_FILE=/etc/security/dmd.conf
//* DMD_CTRACE_MEMBER=CTIDMD00
//* DMD_PIDFILE=/var/dm/dmd.pid
//* DMD_CODEPAGE=IBM-1047
Start of change//*
//*   If you want to include comments in the data set or
//*   z/OS UNIX file, specify the _CEE_ENVFILE_COMMENT
//*   environment variable as the first environment variable
//*   in the data set or file.  The value specified for
//*   the _CEE_ENVFILE_COMMENT variable is the comment character.
//*   For example, if you want to use the pound sign, #, as
//*   the comment character, specify this as the first
//*   statement:
//*     _CEE_ENVFILE_COMMENT=#End of change
//*
//* For information on the above environment variables, refer to the
//* IP Configuration Reference.
//*
//STDENV DD DUMMY
//* Sample MVS data set containing environment variables:
//*STDENV DD DSN=TCPIP.DMD.ENV(DMD),DISP=SHR
//* Sample file containing environment variables:
//*STDENV DD PATH='/etc/security/dmd.env',PATHOPTS=(ORDONLY)
//*
//* Output written to stdout and stderr goes to the data set or
//* file specified with SYSPRINT or SYSOUT, respectively.
//SYSPRINT DD SYSOUT=*
//SYSOUT DD SYSOUT=*