On Thursday, August 9, 2012 4:18:17 PM UTC-5, Wolf Noble wrote:
>
> if you're using hiera, why not something like: 
>
>
> foo_data_webfarm_http_servers: 
>   foo1.example.com: { 
>     ip: '1.2.3.4', 
>     port: '80', 
>   } 
>

[...]

Because that duplicates the data, which you then need to keep 
synchronized.  Yuck.

It looks like you might be able to get some use out of Ruby's "Resolv" 
class, but that's a bit of a hack because it does not use the system's 
native resolver library (hence it might provide different answers in some 
cases).

I think a more reliable approach would be via Socket.getaddrinfo() or 
Socket.gethostbyname().  As far as I can tell, those are direct interfaces 
to appropriate system libraries, but they are probably somewhat trickier to 
use.


John

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/puppet-users/-/QNCSVYxQktUJ.
To post to this group, send email to puppet-users@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to