-Correct noderange check in last update

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@5370 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2010-03-04 22:02:29 +00:00
parent ccb365dd3d
commit d8eba5c0c2

View File

@ -64,7 +64,8 @@ sub process_request {
# if request comes from node post script .awk file.
}elsif($request->{'_xcat_clienthost'}){
$noderange = noderange($request->{'_xcat_clienthost'}.",".$request->{'_xcat_clientfqdn'});
my @nodenames = noderange($request->{'_xcat_clienthost'}.",".$request->{'_xcat_clientfqdn'});
$noderange = $nodenames[0];
}else{
$callback->({error=>["Well Kemosabi, I can't figure out who you are."],errorcode=>[1]});
return;