Am I right, that exported resources are only working with puppetdb?
Can you explain to me, what puppetdb does? I always thought, that puppetdb 
is a database-environment like MySQL. 

I have Puppet running with Foreman. And instead of the PostgreSQL-Database 
i installed MySQL. Can I additionally install Puppetdb beside MySQL?

Thank You!

Am Mittwoch, 1. Juli 2015 15:41:38 UTC+2 schrieb Craig Dunn:
>
> > My idea wos now to take the Ressource "file" and put in the path-option 
> the 
> > path to the share of the syslog-system, like so: 
> > 
> > file { "$hostname.conf": 
> >     ensure  =>  present, 
> >     path    =>  "//server/share/$hostname.conf", 
> >     source  =>  template("default_nxlog_debian/default.conf.erb") 
> >   } 
>
> If I understand you correctly, then I think exported resources is what 
> you are looking for - assuming you want to put it into 
> /etc/something/$hostname.conf on the syslog server (for example) then 
> you could do something like... 
>
> (on the agents) 
> @@file { "/etc/something/${::hostname}.conf": 
>   ensure => file, 
>   content => template('default_nxlog_debian/default.conf.erb'), 
>   tag => 'ngix_config_file', 
> } 
>
> This will cause the resource to be stored on the puppet master, rather 
> than applied to the node, you can then collect all the resources on 
> the syslog server by having something like this in the manifest.... 
>
> File <<| tag == 'ngix_config_file' |>> 
>
> See: 
> https://docs.puppetlabs.com/puppet/latest/reference/lang_exported.html 
> for more detailed docs. 
>
> Regards 
> Craig 
>
>
>
> -- 
> Enviatics | Automation and configuration management 
> http://www.enviatics.com | @Enviatics 
> Puppet Training http://www.enviatics.com/training/ 
>

-- 
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/90f9ed78-f91b-4140-9501-a8e2d04ab242%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to