254f59e6a8
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@5116 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
62 lines
1.6 KiB
Plaintext
62 lines
1.6 KiB
Plaintext
=head1 NAME
|
|
|
|
B<regnotif> - Registers a Perl module or a command that will get called when changes occur in the desired xCAT database tables.
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
I<regnotif [-h| --help]>
|
|
|
|
I<regnotif [-v| --version]>
|
|
|
|
|
|
I<regnotif I<filename tablename>[,tablename]... [-o|--operation actions]>
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
This command is used to register a Perl module or a command to the xCAT notification table. Once registered, the module or the command will get called when changes occur in the xCAT database tables indicated by tablename. The changes can be row addition, deletion and update which are specified by actions.
|
|
|
|
|
|
=head1 Parameters
|
|
|
|
I<filename> is the path name of the Perl module or command to be registered.
|
|
I<tablename> is the name of the table that the user is interested in.
|
|
|
|
=head1 OPTIONS
|
|
|
|
|
|
B<-h | -help> Display usage message.
|
|
|
|
B<-v | -version > Command Version.
|
|
|
|
B<-V | -verbose> Verbose output.
|
|
|
|
B<-o | -operation> specifies the database table actions that the user is interested in. It is a comma separated list. 'a' for row addition, 'd' for row deletion and 'u' for row update.
|
|
|
|
=head1 RETURN VALUE
|
|
|
|
0 The command completed successfully.
|
|
|
|
1 An error has occurred.
|
|
|
|
=head1 EXAMPLES
|
|
|
|
1. To register a Perl module that gets invoked when rows get added or deleted. in the nodelist and the nodehm tables, enter:
|
|
|
|
regnotif /opt/xcat/lib/perl/xCAT_monitoring/mycode.pm nodelist,nodhm -o a,d
|
|
|
|
2. To register a command that gets invoked when rows get updated in the switch table, enter:
|
|
|
|
regnotif /usr/bin/mycmd switch -o u
|
|
|
|
=head1 FILES
|
|
|
|
/opt/xcat/bin/regnotif
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
L<unregnotif(1)|unregnotif.1>
|
|
|