On Monday, March 11, 2013 7:44:08 PM UTC-5, Ellison Marks wrote:
>
> I think what you're describing fits exported resources. That is, each node 
> would get it's data from hiera and export it, and then the main node would 
> spaceship it all up.
>
> http://docs.puppetlabs.com/puppet/3/reference/lang_exported.html
> http://docs.puppetlabs.com/guides/exported_resources.html
>


Possibly, though that's not an exact fit to the concept the OP described.  
One needs to remember that its *resources* that can be exported, not raw 
data.

I think the OP has his plan backwards.  Given that he has a need for a hash 
of all the per-node data, I don't understand why he wants to spread it out 
over separate per-node files and then make Puppet reassemble it.  I would 
express the whole master hash in a common hiera data file, and have each 
node select its own data out of that.

With that said, it looks like the OP is also confused by the similarity 
between Puppet's hash literal syntax and its selector syntax.  
Specifically, the expression 

$::hostname ? { 'server1' => '192.168.0.2', 'server2' => '192.168.0.1', },

does not involve a Puppet hash.  If one did had a hash of the server name 
to IP mappings, then the syntax for selecting a desired element from it 
would be different:

$my_hash[$::hostname]

John

-- 
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 post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to