From c4e78295ff69d564789500bc69db825c86e7e00f Mon Sep 17 00:00:00 2001 From: lissav Date: Thu, 13 Sep 2012 18:14:51 +0000 Subject: [PATCH] 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 --- xCAT-server/lib/xcat/plugins/tabutils.pm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/xCAT-server/lib/xcat/plugins/tabutils.pm b/xCAT-server/lib/xcat/plugins/tabutils.pm index 9e6532167..03c99ec74 100644 --- a/xCAT-server/lib/xcat/plugins/tabutils.pm +++ b/xCAT-server/lib/xcat/plugins/tabutils.pm @@ -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 # . # # -sub getTablesNodeAttribs +sub getTablesNodesAttribs { my $request = shift; my $cb = shift;