This document details what changes the CA Client Automation install makes on UNIX and how to avoid the changes by configuring the response file prior to install.
When DSM is installed on a UNIX machine, the following entry is added to /etc/profile:
test -r /etc/profile.CA && { CA_SECTION=all; export CA_SECTION; /etc/profile.CA; } # Added by Computer Associates
The DSM installation (irrespective of the agent being installed) writes to the /etc/profile to call the etc/profile.ca file. The profile.ca file is triggered every time a user logs on to the machine so that the following is accomplished:
Since /etc/profile file contains system wide environment settings and startup programs, all customizations that you put in this file will apply for the entire environment variable on your system. DSM software updates this file to set the environment variables for its applications by pointing it to /etc/profile.ca file.
CA Client Automation - All versions.
All Supported version of UNIX
If writing to /etc/profile is not desired, you can try the following:
Modifying the response file:
In the response file of the agent, make the changes to the following line from '0' to '1'
ITRM_SETUP_SYS_PROFILE=1 to ITRM_SETUP_SYS_PROFILE='0 or 1'
Example:
ITRM_SETUP_SYS_PROFILE=1 to ITRM_SETUP_SYS_PROFILE=0
0 = False
1 = True
After making the above changes to the response file, point the installation to use the modified response file using the -r switch and the response file name i.e. '.rsp' file.
Example:
cd /cd_mount_point/SolarisProductFiles_sparc/agent ./installdsm -r install.rsp /RITRM_INST_CMDLINE=1 /RITRM_SERVER=myserver.mydomain /RITRM_MANAGER=mymanager.mydomain
This will prevent the installer from updating /etc/profile.