fixed defect 2898964. without the full path name, runcmd in Utils.pm doesn't return

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@4666 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
wanghuaz 2009-11-25 13:08:05 +00:00
parent 79512954ba
commit ba69e92a50

View File

@ -293,7 +293,7 @@ sub process_command {
my $data;
my $unreachable_nodes;
my $noderange = join (',', @$nodes);
my @output = xCAT::Utils->runcmd("pping $noderange", -1);
my @output = xCAT::Utils->runcmd("/opt/xcat/bin/pping $noderange", -1);
foreach my $line (@output) {
my ($hostname, $result) = split ':', $line;