Description
Type string READONLY
The value of the thishost setting in the pm.settings file on the client. If you do not specify the thishost setting or if the client cannot resolve thishost to an IP address configured on the client, the variable remains undefined.
Example
# print a warning if thishost is not defined
if (!defined thishost)
printf("WARNING: the thishost variable is not defined. \
Please check the pm.settings file on host %s.\n", submithost);
Description
Type string READONLY
time contains the time the request was submitted in the form HH:MM:SS.
Example
printf("Command Started At Time: %s", time)
Description
Type integer READONLY
true is a read-only constant with a value of 1.
Example
if (iolog_encrypt == true )
{
iolog = mktemp("/var/adm/pm.enc."+user+"."+command+".XXXXXX");
}
Description
Type string READONLY
ttyname contains the name of the TTY device from which the user submitted a request.
Example
if ( ttyname == "dev/pts/1")
{
printf("Command not authorized using tty device dev/pts/1");
reject;
}