From be26420229e12cfaeca96dd40b728c5d3db4261b Mon Sep 17 00:00:00 2001 From: ligc Date: Fri, 6 Jan 2012 08:30:34 +0000 Subject: [PATCH] fix for bug 3465129: pping should handle the output 'address not found' git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@11358 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-client/bin/pping | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xCAT-client/bin/pping b/xCAT-client/bin/pping index fb94925ad..e99b5fd2f 100755 --- a/xCAT-client/bin/pping +++ b/xCAT-client/bin/pping @@ -153,6 +153,8 @@ sub fping_pping { s/ is unreachable/: noping/; } elsif ($_ =~ /is alive/) { s/ is alive/: ping/; + } elsif ($_ =~ /address not found/) { + s/ address not found/: noping/; } print $_; }