From 48a3d5ea68e64eaab1085f887e85beae05a7130e Mon Sep 17 00:00:00 2001 From: XuWei Date: Tue, 10 Jan 2017 02:46:35 -0500 Subject: [PATCH] fix typo bug in xcatprobe discovery --- xCAT-probe/subcmds/discovery | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-probe/subcmds/discovery b/xCAT-probe/subcmds/discovery index a84ecccee..c47a1add1 100755 --- a/xCAT-probe/subcmds/discovery +++ b/xCAT-probe/subcmds/discovery @@ -242,7 +242,7 @@ sub check_pre_defined_node { foreach my $mtmsnode (@{$mtms_node{$mtms}}) { next if ($mtmsnode eq $node); if (exists($nodecheckrst{$mtmsnode})) { - if (($nodecheckrst{$mtmsnode}{"nodetype"} eq $nodecheckrst{$node}{"nodetype"}) and ($nodecheckrst{$mtmsnode}{"mp"} eq $nodecheckrst{$node}{"hwtype"})) { + if (($nodecheckrst{$mtmsnode}{"nodetype"} eq $nodecheckrst{$node}{"nodetype"}) and ($nodecheckrst{$mtmsnode}{"hwtype"} eq $nodecheckrst{$node}{"hwtype"})) { push @error_mtms, $mtms if (!grep {$_ eq $mtms} @error_mtms); } } else {