I am not sure what your end goal is but it sounds like  you want to get 
information from the puppet node during catalog enforcement to use during 
the catalog compilation.  If this is the case I would recommend using a 
native type and provider to perform which executes directly on the puppet 
node where you can query in real time.  This seems like you might end up 
with thousands of facts in some cases which could cause other problems.


Corey

On Friday, May 8, 2015 at 8:42:03 AM UTC-7, James Oden wrote:
>
> I created a custom fact file to generate home_$user entries for all 
> users on the system containing their respective home directories: 
>
>    require 'etc' 
>
>    while pwEnt = Etc.getpwent do 
>        name = pwEnt.name 
>        home = pwEnt.dir 
>        var  = "home_#{name}" 
>        Facter.add(var) do 
>            setcode do 
>                home 
>            end 
>       end 
>    end 
>    Etc.endpwent 
>
> When I use it though every home_$user entry has the same value (the 
> home directory of the last user it processed).  I can add print 
> statements and see that the loop is getting the right information. 
> What am I doing wrong or not understanding? 
>
> Thanks...James 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/7e3fad09-4556-49c5-a170-ec13b1c32fe3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to