Description
Type string READ/WRITE
runcwd is a modifiable copy of the cwd input variable. Specifies the working directory for pmlocald to use when setting up the runtime environment for the session.
Example
if ( command in appl_cmds)
{
runcwd = "/home/appl_home";
}
Description
Type boolean WRITABLE
runenablerlimits lets you use runrlimit variables on the run host. To enable the rlimit variables, runenablerlimits must be set to a value of True.
Description
Type list READ/WRITE
runenv is a modifiable copy of the env input variable. It contains a list of environment variables that pmlocald sets up when initializing the runtime environment for the session.
Example
if ( (command in appl_cmds) && (runhost == "sun8") )
{
runenv={"TERM=xterm","PATH=/usr/bin:/usr/local/bin", "HOME=/home/appl_home"};
}
Description
Type string READ/WRITE
rungroup is a modifiable copy of the group input variable. It specifies the primary group for pmlocald to use when initializing the runtime environment.
Example
if ( (user == "apache") && (command == "admin.cgi") )
{
rungroup="root";
}