-Realize it needs to be a list reference

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@5376 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
jbjohnso 2010-03-04 22:31:46 +00:00
parent f5fae3f9e5
commit 0a5e7c4c19

View File

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