Puppet Function: dnsquery::ptr
- Defined in:
- vendor_modules/dnsquery/lib/puppet/functions/dnsquery/ptr.rb
- Function type:
- Ruby 4.x API
Overview
Retrieves DNS PTR records for a domain and returns them as an array.
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'vendor_modules/dnsquery/lib/puppet/functions/dnsquery/ptr.rb', line 6 Puppet::Functions.create_function(:'dnsquery::ptr') do # @param domain the dns domain to lookup # @param config_info used to override the config for Resolve::DNS.new # @param block an optional lambda to return a default value in case the lookup fails # @return An array of PTR answeres matching domain dispatch :dns_ptr do param 'Stdlib::Fqdn', :domain optional_param 'Optional[Dnsquery::Config_info]', :config_info optional_block_param :block return_type 'Array[Stdlib::Fqdn]' end def dns_ptr(domain, config_info = nil) resolver = PuppetX::Voxpupuli::Dnsquery::Utils.resolver(config_info) ret = resolver.getresources( domain, Resolv::DNS::Resource::IN::PTR ).map do |res| res.name.to_s end block_given? && ret.empty? ? yield : ret rescue Resolv::ResolvError block_given? ? yield : raise end end |