Description
Type integer READONLY
Read-only constant used with the feature_enabled() function to determine whether LDAP features are available on a particular policy server.
Example
if (!feature_enabled(FEATURE_LDAP)
print("LDAP support is not available on this policy server");
Description
Type integer READONLY
Read-only constant used with the feature_enabled() function to determine whether Authentication Services features are available on a particular policy server.
Example
if (!feature_enabled(FEATURE_VAS)
print("Authentication Services support is not available on this policy server");
Description
Type integer READONLY
gid contains the Group ID of the submitting user's primary group on the client host.
Example
adminusers = {"dan","robyn","cory"};
printf ("Request received from user id:%d %d\n", uid, gid);
Description
Type string READONLY
group contains the name of user's primary group.
Example
if (group == "admin")
adminusers = append(adminusers,user);