From 106a7f205375b73396d1955b8d5caffc94b292d5 Mon Sep 17 00:00:00 2001 From: linggao Date: Thu, 7 Feb 2008 20:08:31 +0000 Subject: [PATCH] calling fping without specify absolute path in xcatnodemon git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@418 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server-2.0/sbin/xcatnodemon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server-2.0/sbin/xcatnodemon b/xCAT-server-2.0/sbin/xcatnodemon index a83897c76..38172501d 100755 --- a/xCAT-server-2.0/sbin/xcatnodemon +++ b/xCAT-server-2.0/sbin/xcatnodemon @@ -83,7 +83,7 @@ sub pingNodeStatus { #get all the active nodes #TODO how to decide the path of fping. how about AIX, does it support fping? my $nodes= join(' ', @mon_nodes); - my $temp=`/usr/sbin/fping -a $nodes 2> /dev/null`; + my $temp=`fping -a $nodes 2> /dev/null`; chomp($temp); @active_nodes=split(/\n/, $temp);