Re: [Puppet Users] How to subscribe to an exported resource?

2012-09-04 Thread Marc Haber
On Thu, Aug 16, 2012 at 01:27:04PM +0200, Marc Haber wrote: On Wed, Aug 15, 2012 at 08:34:03PM +0200, Marc Haber wrote: On Tue, Aug 14, 2012 at 07:58:21PM +0100, Stephen Gran wrote: The classic is: https://github.com/ripienaar/puppet-concat So that is a module that would need to be

Re: [Puppet Users] How to subscribe to an exported resource?

2012-08-16 Thread Marc Haber
On Wed, Aug 15, 2012 at 08:34:03PM +0200, Marc Haber wrote: On Tue, Aug 14, 2012 at 07:58:21PM +0100, Stephen Gran wrote: The classic is: https://github.com/ripienaar/puppet-concat So that is a module that would need to be compiled and installed (on the puppetmaster, run by a different

Re: [Puppet Users] How to subscribe to an exported resource?

2012-08-15 Thread Marc Haber
On Tue, Aug 14, 2012 at 07:58:21PM +0100, Stephen Gran wrote: The classic is: https://github.com/ripienaar/puppet-concat So that is a module that would need to be compiled and installed (on the puppetmaster, run by a different department)? Greetings Marc --

[Puppet Users] How to subscribe to an exported resource?

2012-08-14 Thread Marc Haber
Hi, I am trying to build (on node A) an authorized_keys file that contains all host keys from all nodes that have class C imported. Here is my code: class C { @@file { /var/lib/foo/authorized_keys/$fqdn: ensure = present, content = from=\$ipaddress_eth0\

Re: [Puppet Users] How to subscribe to an exported resource?

2012-08-14 Thread Stephen Gran
Hi, On Tue, 2012-08-14 at 13:27 +0200, Marc Haber wrote: Hi, I am trying to build (on node A) an authorized_keys file that contains all host keys from all nodes that have class C imported. Here is my code: ... That being said, is there a way to do things more elegantly? I understand