diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-11-22 11:16:09 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-11-22 11:16:09 +0000 |
commit | c68df7d3d06db5455222a16d2e87cd9b11225630 (patch) | |
tree | 2adead841c1c4cea3a91c63d492538a35abe7aa6 /lib | |
parent | e8f004e87f0b17a6fded5b3c3e1eb0eef31130ec (diff) |
Removed.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/custodian/multiping.rb | 82 |
1 files changed, 0 insertions, 82 deletions
diff --git a/lib/custodian/multiping.rb b/lib/custodian/multiping.rb deleted file mode 100644 index 7c69923..0000000 --- a/lib/custodian/multiping.rb +++ /dev/null @@ -1,82 +0,0 @@ - -require 'custodian/util/dns' - -# -# This class has methods to determine whether the target -# of a hostname/IP address is IPv4 or IPv6. -# -# Assuming the address resolves to one of those two types -# it can invoke on of /usr/bin/ping or /usr/bin/ping6 appropriately. -# -class MultiPing - - # - # The hostname we'll ping, and the resolved address. - # - attr_reader :hostname, :resolved - - # - # Save the hostname away, resolve it if possible. - # - def initialize( hostname ) - @hostname = hostname - @resolved = Custodian::Util::DNS.hostname_to_ip( hostname ) - end - - - # - # Return the resolved address - # - def address - @resolved - end - - - - # - # Does the hostname resolve to an IPv4 address? - # - def is_ipv4? - if ( ( ! @resolved.nil? ) && ( @resolved =~ /^([0-9]+).([0-9]+).([0-9]+).([0-9]+)$/ ) ) - true - else - false - end - end - - - # - # Does the hostname resolve to an IPv6 address? - # - def is_ipv6? - if ( ( ! @resolved.nil? ) && ( @resolved =~ /^([a-f0-9:]+)$/i ) ) - true - else - false - end - end - - - - # - # Run the ping - if it succeeds return "true". - # - # Return false on error. - # - def run_ping - if ( is_ipv6? ) - if ( system( "ping6 -c 1 #{@resolved} 2>/dev/null >/dev/null" ) == true ) - return true - end - elsif( is_ipv4? ) - if ( system( "ping -c 1 #{@resolved} 2>/dev/null >/dev/null" ) == true ) - return true - end - else - puts "ERROR: Resolved to neither an IPv6 or IPv4 address." - end - return false - end - -end - |