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";
}
Description
Type list READ/WRITE
rungroups is a modifiable copy of the groups input variable. It specifies the full list of groups for pmlocad to use when initializing the runtime environment.
Example
if ( (user == "apache") && (command == "admin.cgi") )
{
rungroups={"admin","operators"};
}
Description
Type string READ/WRITE
runhost specifies the host on which the runcommand will run.
Example
If ( command == "runSimulation" )
{
runhost="sol34.test.com";
}
Description
Type integer READ/WRITE
runnice specifies the execution priority that pmlocald sets when initializing the runtime environment. (For more details, see the UNIX man pages for nice.)
Example
if ( timebetween(900,1630) )
{
runnice=010;
}
else
{
runnice=020;
}