add check in preprocess for nmap installed, if installed skip hierarchy

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@4251 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
lissav 2009-09-28 17:32:16 +00:00
parent 2685de1e1a
commit af0a034e90

View File

@ -84,8 +84,10 @@ sub preprocess_request
my $nodes = $req->{node};
my $service = "xcat";
my @requests;
if ($nodes){
return [$req]; #For now, do not distribute, nodestat seems to lose accuracy and slow down distributed
if ($nodes){
if (-x '/usr/bin/nmap' or -x '/usr/local/bin/nmap') {
return [$req]; #For now, do not distribute, nodestat seems to lose accuracy and slow down distributed, if using nmap
}
# find service nodes for requested nodes
# build an individual request for each service node
my $sn = xCAT::Utils->get_ServiceNode($nodes, $service, "MN");