diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-11-22 06:43:43 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-11-22 06:43:43 +0000 |
commit | d570830db8f7d893cbcf8e7cfe05c4578bb63fd0 (patch) | |
tree | a71784aa8d29749a4ec674c22dafb5c408b58f94 /lib/custodian/multiping.rb | |
parent | 6b777872b8d0ec8506ef90bc121eb70a8099db80 (diff) |
Updated for new class name.
Diffstat (limited to 'lib/custodian/multiping.rb')
-rw-r--r-- | lib/custodian/multiping.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/custodian/multiping.rb b/lib/custodian/multiping.rb index b800196..8844112 100644 --- a/lib/custodian/multiping.rb +++ b/lib/custodian/multiping.rb @@ -1,6 +1,6 @@ require 'getoptlong' -require 'custodian/dnsutil' +require 'custodian/util/dns' # # This class has methods to determine whether the target @@ -21,7 +21,7 @@ class MultiPing # def initialize( hostname ) @hostname = hostname - @resolved = DNSUtil.hostname_to_ip( hostname ) + @resolved = Custodian::Util::DNS.hostname_to_ip( hostname ) end |