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

Privilege Manager for Unix 7.0 - 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

lineno

Syntax
int lineno( )
Description

lineno returns the current line number in the policy file.

Example
printf("TRACE: user:%s, cmd:%s, lineno:%d\n", user, command, lineno()); 

mktemp

Syntax
string mktemp ( string template )
Description

mktemp returns a unique filename which is guaranteed not to exist on the policy server. Use the mktemp function to create unique temporary filenames.

For more information, see the mktemp(3) man page.

Example
#generate a unique filename–the XXXXXX chars will be replaced to construct a unique name 
filename=mktemp("/tmp/pmXXXXXX"); 
print(filename); // prints "/tmp/pmAxK2de"

osname

Syntax
string osname( )
Description

osname returns an internal string representation of the operating system on the policy server, such as aix43-rs6k, linux-x86_64.

Example
printf("Policy server is running on OS:%s\n", osname()); 

quote

Syntax
string quote( string str [, string esc[, string surrounding_string]] )
Description

The quote function puts the specified string between quotation marks. It inserts the "\" (backslash) character as required to "quote" any occurrences of the characters in the second argument to indicate that they are taken literally. The string is surrounded by a "surrounding_string" and defaults to the value of esc, which is optional and defaults to the value of the specified escape character. UThe quote function is useful when parsing arguments into commands which are shell scripts. The default escape character is a single quote.

Example
#this function will return: [This won\'t fail.] 
quote("This won't fail.", "'");
Documents connexes

The document was helpful.

Sélectionner une évaluation

I easily found the information I needed.

Sélectionner une évaluation