Revise getnodetype function to not do N! log entries

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@12574 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2012-05-08 18:53:05 +00:00
parent 743d03e1ae
commit e519a1f925

View File

@ -2278,11 +2278,11 @@ sub getnodetype
##################################################
# give error msg for the nodes can't get nodetype
##################################################
if ( @failnodes1 ) {
my $nodelist = join(",", @failnodes1);
xCAT::MsgUtils->message('S', "getnodetype:Can't find these nodes' type: $nodelist.\n");
}
}
if ( @failnodes1 ) {
my $nodelist = join(",", @failnodes1);
xCAT::MsgUtils->message('S', "getnodetype:Can't find these nodes' type: $nodelist.\n");
}
}
}
#####################