From ba69e92a50e0702f8e23c67fb5ffc1e32eb673fa Mon Sep 17 00:00:00 2001 From: wanghuaz Date: Wed, 25 Nov 2009 13:08:05 +0000 Subject: [PATCH] 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 --- xCAT-server/lib/perl/xCAT/PPC.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/perl/xCAT/PPC.pm b/xCAT-server/lib/perl/xCAT/PPC.pm index 27797282a..ad8fbc898 100644 --- a/xCAT-server/lib/perl/xCAT/PPC.pm +++ b/xCAT-server/lib/perl/xCAT/PPC.pm @@ -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;