From 3e27aa6e51b84d3b5d40ae51ef56c19f615ffd0c Mon Sep 17 00:00:00 2001 From: lissav Date: Mon, 18 Jun 2012 19:27:04 +0000 Subject: [PATCH] remove fping_hostnames routine, unused and do not want a dependency on fping in xCAT git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@13121 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- perl-xCAT/xCAT/DSHCore.pm | 49 --------------------------------------- 1 file changed, 49 deletions(-) diff --git a/perl-xCAT/xCAT/DSHCore.pm b/perl-xCAT/xCAT/DSHCore.pm index 22a16ac29..96c05fd37 100644 --- a/perl-xCAT/xCAT/DSHCore.pm +++ b/perl-xCAT/xCAT/DSHCore.pm @@ -575,55 +575,6 @@ sub pipe_handler_buffer return $eof_reached; } -#--------------------------------------------------------------------------- - -=head3 - fping_hostnames - - Executes fping on a given list of hostnames and returns a list of those - hostnames that did not respond - - Arguments: - @hostnames - list of hostnames to execute for fping - - Returns: - @no_response - list of hostnames that did not respond - undef if fping is not installed - - Globals: - None - - Error: - None - - Example: - @bad_hosts = xCAT::DSHCore->fping_hostnames(@host_list); - - Comments: - -=cut - -#--------------------------------------------------------------------------- - -sub fping_hostnames -{ - my ($class, @hostnames) = @_; - - my $fping = (-x '/usr/sbin/fping') || undef; - !$fping && return undef; - - my @output = `/usr/sbin/fping -B 1.0 -r 1 -t 50 -i 10 -p 50 @hostnames`; - - my @no_response = (); - foreach my $line (@output) - { - my ($hostname, $token, $status) = split ' ', $line; - !(($token eq 'is') && ($status eq 'alive')) - && (push @no_response, $hostname); - } - - return @no_response; -} #---------------------------------------------------------------------------