fix for bug 3496309: print warning message if could not find osimage information for nodes

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.7@12215 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
ligc 2012-04-12 07:57:26 +00:00
parent 8112759c2f
commit 02673d9bac

View File

@ -2638,6 +2638,12 @@ sub defls
}
}
}
if (scalar(keys %{$nodeosimagehash{$obj}}) == 0)
{
my $rsp;
$rsp->{data}->[0] = "$obj: could not find information for osimage $nodeosimgname{$obj}";
xCAT::MsgUtils->message("W", $rsp, $::callback);
}
}
}
}