change name to getTablesNodesAttribs because Bruce is picky

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.7@13786 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
lissav 2012-09-13 18:14:51 +00:00
parent d37b7dd8f4
commit c4e78295ff

View File

@ -57,7 +57,7 @@ sub handled_commands
getAllEntries => "tabutils",
getNodesAttribs => "tabutils",
getTablesAllNodeAttribs => "tabutils",
getTablesNodeAttribs => "tabutils",
getTablesNodesAttribs => "tabutils",
setNodesAttribs => "tabutils",
delEntries => "tabutils",
getAttribs => "tabutils",
@ -161,9 +161,9 @@ sub process_request
{
return getTablesAllNodeAttribs($request,$callback);
}
elsif ($command eq "getTablesNodeAttribs")
elsif ($command eq "getTablesNodesAttribs")
{
return getTablesNodeAttribs($request,$callback);
return getTablesNodesAttribs($request,$callback);
}
elsif ($command eq "setNodesAttribs")
{
@ -2475,7 +2475,7 @@ sub getTablesAllNodeAttribs
$cb->(\%rsp);
return;
}
# getTablesNodeAttribs
# getTablesNodesAttribs
# Read the nodes in the noderange from the input tables
# and get the input attributes
# or get ALL attributes, if the word ALL is used.
@ -2514,7 +2514,7 @@ sub getTablesAllNodeAttribs
# .
#</xcatresponse>
#
sub getTablesNodeAttribs
sub getTablesNodesAttribs
{
my $request = shift;
my $cb = shift;