On 03.12.2009 19:07, Scott Smith wrote:
> Silviu Paragina wrote:
>    
>> (ip_list is a custom fact that lists the machines ip addresses sorted,
>> except 127.0.0.1)
>>
>>      
> Could you post more of the manifest? You might be able to use the
> interfaces fact instead of writing your own:
>
> sc...@dongle:~% for iface in `facter | egrep -e '^interfaces' | awk '{
> print $3 }'`
> do
> facter | egrep -e "(ipaddress|macaddress|netmask|network)_$iface"
> done
> ipaddress_eth0 =>  10.15.50.36
> macaddress_eth0 =>  00:23:ae:98:02:b5
> netmask_eth0 =>  255.255.255.0
> network_eth0 =>  10.15.50.0
> sc...@dongle:~%
>
> Maybe it won't help in your case, but it could at least reduce the
> amount of code you write/debug :)
>    
> -scott
>
> --
>
> You received this message because you are subscribed to the Google Groups 
> "Puppet Users" group.
> To post to this group, send email to puppet-us...@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.
>
>
>    
I have already implemented the fact, templates and manifests :-) . If 
anyone requires the facter plugin I'll attach it on the list.
The templates control the ips some nginx vhosts bind to.

Leaving that aside for the sake of the discussion, it would be harder to 
do it via puppet and interfaces because the production machine is 
actually a vps (openvz). Facter says this on my vps
ipaddress => xx.xx.xx.1
ipaddress_venet0 => 127.0.0.1
ipaddress_venet0_0 => xx.xx.xx.1
ipaddress_venet0_1 => xx.xx.xx.2

And of course on the development machine, being a real machine, the 
output is similar to your output.

As I want to be able to apply this manifest on both a real machine and a 
virtual one, it's kind of hard to do it with only the default facts.


Silviu

--

You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To post to this group, send email to puppet-us...@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