Debugging Configuration Management Client-Side Environment Variables
The simplest way to check whether an environment variable is set in the client event trigger’s runtime execution is to run the default shell’s environment display command.
For example, on Windows:
si.CheckOutMembers.post=COpost
si.trigger.COpost.command=cmd /k set
For example, on Linux:
si.CheckOutMembers.post=COpost
si.trigger.COpost.command=sh –w –c env
where
• cmd opens a command prompt.
• /k keeps the command prompt window open.
• set displays the machine environment variables.
Related Links