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 | c05bf655545d5b27b941ea03c1631d975557977e (patch) | |
tree | a71784aa8d29749a4ec674c22dafb5c408b58f94 /lib/custodian/multiping.rb | |
parent | 80b250e226472b3d7d71c194ea1cd2b02f52885c (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 |