46d3c9d7c7
git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@269 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
31 lines
722 B
Perl
31 lines
722 B
Perl
# IBM(c) 2007 EPL license http://www.eclipse.org/legal/epl-v10.html
|
|
|
|
package xCAT_plugin::fsp;
|
|
use strict;
|
|
use xCAT::PPC;
|
|
|
|
|
|
##########################################################################
|
|
# Command handler method from tables
|
|
##########################################################################
|
|
sub handled_commands {
|
|
return {
|
|
rpower => 'nodehm:power,mgt',
|
|
reventlog => 'nodehm:mgt',
|
|
rfsp => 'nodehm:mgt'
|
|
};
|
|
}
|
|
|
|
|
|
##########################################################################
|
|
# Process request from xCat daemon
|
|
##########################################################################
|
|
sub process_request {
|
|
xCAT::PPC::process_request(__PACKAGE__,@_);
|
|
}
|
|
|
|
|
|
|
|
|
|
1;
|