Tchater maintenant avec le support
Tchattez avec un ingénieur du support

Privilege Manager for Unix 7.2.1 - Administration Guide

Introducing Privilege Manager for Unix Planning Deployment Installation and Configuration Upgrade Privilege Manager for Unix System Administration Managing Security Policy The Privilege Manager for Unix Security Policy Advanced Privilege Manager for Unix Configuration Administering Log and Keystroke Files InTrust Plug-in for Privilege Manager for Unix Troubleshooting Privilege Manager for Unix Policy File Components Privilege Manager for Unix Variables
Variable names Variable scope Global input variables Global output variables Global event log variables PM settings variables
Privilege Manager for Unix Flow Control Statements Privilege Manager for Unix Built-in Functions and Procedures
Environment functions Hash table functions Input and output functions LDAP functions LDAP API example List functions Miscellaneous functions Password functions Remote access functions String functions User information functions Authentication Services functions
Privilege Manager for Unix programs Installation Packages

remoteuserlist

Syntax
list remoteuserlist ( string hostname )
Description

remoteuserlist returns the full list of user names on the remote host.

The remote host must be configured to run either pmmasterd or pmclientd to respond to this function.

Example
#print the user list on the runhost 
print(remoteuserlist(runhost)) 

String functions

These are the built-in string functions available to use within the pmpolicy file.

Table 45: String functions
Name Description
match Match a string to a pattern.

pad

Return a new string at a specified character length.

strindex Return the position of a substring in a string.
strlen Return the length of a string.
strsub Return a substring of a string.

sub

Return a new string with specified replacements.

subst Substitute part of a string.

substr

Return a substring of a string .

match

Syntax
int match( string regularexpr, string str )
Description

match compares a string to a regular expression.

Returns true if a match is found; otherwise, false.

Example
# check if user begins with j and ends with t… 
if (match("^j.*t$", user) ) { 
   … 
}

pad

Syntax
int pad ( string sourcestring, string length, string padchar )
Description

pad returns a new string at the exact length of characters long. The beginning of the string is the sourcestring.

If the length argument is bigger than the size of the sourcestring, then the returned string is padded with the padchar argument. Otherwise, the first length characters of sourcestring are returned.

The padchar argument can also contain multiple characters, in which case the characters return padded repeatedly.

Example
result = pad("123",5," "); {
# returns "123"
}
result = pad("123",6,"<>"); {
# returns "123<><"
}
result = pad("User Name", 3, " "); {
# returns "User"
}
Documents connexes

The document was helpful.

Sélectionner une évaluation

I easily found the information I needed.

Sélectionner une évaluation