fix bug 3651: rspconfig with cmm does not execute or provide error when entry found in ipmi table
This commit is contained in:
		| @@ -3221,6 +3221,11 @@ sub filter_nodes{ | ||||
|     if ($ipmitab) { | ||||
|         $ipmitabhash = $ipmitab->getNodesAttribs(\@nodes,['bmc']); | ||||
|     } | ||||
|     my $nodehmhash; | ||||
|     my $nodehmtab = xCAT::Table->new("nodehm"); | ||||
|     if ($nodehmtab) { | ||||
|         $nodehmhash = $nodehmtab->getNodesAttribs(\@nodes,['mgt']); | ||||
|     } | ||||
|  | ||||
|     my (@mp, @ngpfsp, @ngpbmc, @commonfsp, @commonbmc, @unknow); | ||||
|  | ||||
| @@ -3230,6 +3235,15 @@ sub filter_nodes{ | ||||
|     # if only in 'ipmi', a common x86 node | ||||
|     foreach (@nodes) { | ||||
|         if (defined ($mptabhash->{$_}->[0]) && defined ($mptabhash->{$_}->[0]->{'mpa'})) { | ||||
|             if ($mptabhash->{$_}->[0]->{'mpa'} eq $_) { | ||||
|                 if (defined($nodehmhash->{$_}->[0]) && defined($nodehmhash->{$_}->[0]->{'mgt'}) &&  | ||||
|                     $nodehmhash->{$_}->[0]->{'mgt'} eq "blade") { | ||||
|                     push @mp, $_; | ||||
|                 } else { | ||||
|                     push @unknow, $_; | ||||
|                 } | ||||
|                 next; | ||||
|             }  | ||||
|             if (defined ($ppctabhash->{$_}->[0]) && defined ($ppctabhash->{$_}->[0]->{'hcp'})) { | ||||
|               # flex power node | ||||
|               push @ngpfsp, $_; | ||||
| @@ -3275,6 +3289,7 @@ sub filter_nodes{ | ||||
|         } else {  | ||||
|           push @{$mpnodes}, @ngpfsp; | ||||
|         } | ||||
|         push @{$mpnodes}, @ngpbmc; | ||||
|     } elsif ($cmd eq "rvitals") { | ||||
|         if (@args && (grep /^lcds$/,@args)) { | ||||
|             push @{$fspnodes},@ngpfsp; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user