[Puppet Users] duplicate resource with inherit and puppet apply

2016-09-28 Thread Toni Schmidbauer
hi, it's a stupid example but nevertheless it would be interesting to now why the following throws a duplicate resource error under puppet 3.7.4 and puppet 4.2.1 test/manifests/init.pp: # start puppet code class test inherits test::subclass { notify { 'hello?': } } include test #end puppet cod

Re: [Puppet Users] Moment of duhh.... Trying to wrap my head around some condition statements.

2016-09-28 Thread markbergman . gm
In the message dated: Tue, 27 Sep 2016 13:38:16 -0400, The pithy ruminations from Christopher Wood on were: => This is one of the first custom facts I wrote, you would likely want to improve on it based on the guide. However it has worked for us for a few years now. Enjoy? => => This lives in

Re: [Puppet Users] Moment of duhh.... Trying to wrap my head around some condition statements.

2016-09-28 Thread Christopher Wood
On Tue, Sep 27, 2016 at 02:59:17PM -0400, markbergman...@gmail.com wrote: > In the message dated: Tue, 27 Sep 2016 13:38:16 -0400, > The pithy ruminations from Christopher Wood on > condi > tion statements.> were: > => This is one of the first custom facts I wrote, you would likely want to > imp

[Puppet Users] Puppet 3.8 EOL Question

2016-09-28 Thread Dan White
I found a thread from March on puppet-dev (Subject Line: End of Life estimate for Puppet 3.X?) On which Eric Sorenson said, referring to Open Source Puppet,  "As a practical matter we're going to have Puppet 3.8 on maintenance and security fixes as long as there's a supported PE version that in

Re: [Puppet Users] Puppet 3.8 EOL Question

2016-09-28 Thread Rob Nelson
Dan, That might be a better question for Red Hat as they often support bundled/associated EOL products (like ruby 1.8.7) by themselves once the vendor support ends. On Wednesday, September 28, 2016, Dan White wrote: > I found a thread from March on puppet-dev (Subject Line: End of Life > estima

Re: [Puppet Users] Puppet 3.8 EOL Question

2016-09-28 Thread Dan White
Good idea, but I thought I'd ask in both camps. Thanks. Dan White | d_e_wh...@icloud.com “Sometimes I think the surest sign that intelligent life exists elsewhere in the universe is that none of it has tried to contact us.” (Bill Waterson: Calvin

Re: [Puppet Users] Puppet 3.8 EOL Question

2016-09-28 Thread Stefan Heijmans
This shows the Satellite lifecycle: https://access.redhat.com/support/policy/updates/satellite -- 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+unsub

Re: [Puppet Users] Puppet 3.8 EOL Question

2016-09-28 Thread James Pryor
Dan, Disclaimer: I work for Red Hat, not on Satellite, and not in a customer facing role: jpryor [AT] redhat.com Red Hat is not customizing puppet 3.8 in Satellite 6 in any way. Puppet 3.8.x as part of of Satellite 6.2 is supported by Red Hat. It has been publicly stated in presentations at Red Ha

Re: [Puppet Users] Puppet 3.8 EOL Question

2016-09-28 Thread Dan White
It does, but it does not make any mention of the almost-obsolete Puppet inside Satellite Dan White | d_e_wh...@icloud.com “Sometimes I think the surest sign that intelligent life exists elsewhere in the universe is that none of it has tried to con

Re: [Puppet Users] Puppet 3.8 EOL Question

2016-09-28 Thread Dan White
THAT is the definitive kind of answer I was hoping for. Many thanks, James. Dan White | d_e_wh...@icloud.com “Sometimes I think the surest sign that intelligent life exists elsewhere in the universe is that none of it has tried to contact us.” (

[Puppet Users] Using a vhost name in hiera

2016-09-28 Thread Ugo Bellavance
Hi, I am working with this module https://github.com/voxpupuli/puppet-nginx to get some nginx servers up. Here is my hiera config for a vhost: nginx::nginx_vhosts: 'website1.domain.com': proxy: 'http://website1.internal' I would like to have my logs in one directory per vhost. Here is w

Re: [Puppet Users] Using a vhost name in hiera

2016-09-28 Thread Garrett Honeycutt
On 9/28/16 3:54 PM, Ugo Bellavance wrote: > Hi, > > I am working with this module https://github.com/voxpupuli/puppet-nginx > to get some nginx servers up. Here is my hiera config for a vhost: > > nginx::nginx_vhosts: > 'website1.domain.com': > proxy: 'http://website1.internal' > > I woul

[Puppet Users] nagios_host breaks everything

2016-09-28 Thread Christopher Peterson
Howdy, After working just fine for a long while, I'm suddenly running into this error on my puppetmaster and any other host that touches the nagios types. I'm not even sure where to start. I tried clearing the host from puppetdb and clearing this host's cache in case something got stuck. No

[Puppet Users] Nagios types break everything

2016-09-28 Thread Christopher Peterson
Howdy, After working just fine for a long while, I'm suddenly running into this error on my puppetmaster and any other host that touches the nagios types. Error: Failed to apply catalog: Could not parse configuration for nagios_host: undefined method `For=' for # I'm not even sure where t

Re: [Puppet Users] Using a vhost name in hiera

2016-09-28 Thread Ugo Bellavance
On Wednesday, September 28, 2016 at 4:35:50 PM UTC-4, Garrett Honeycutt wrote: > > On 9/28/16 3:54 PM, Ugo Bellavance wrote: > > Hi, > > > > I am working with this module https://github.com/voxpupuli/puppet-nginx > > to get some nginx servers up. Here is my hiera config for a vhost: > > >

RE: [Puppet Users] R10K in an existing infrastructure OR How to write yourself into a corner.

2016-09-28 Thread Robert Davidson
I would prefer not to have to treat these modules any differently than the rest - the only thing about the problem modules is that they include data files that need to be pushed intact. Putting them into the control repo would diverge them from the way we want to handle all other modules, which

Re: [Puppet Users] R10K in an existing infrastructure OR How to write yourself into a corner.

2016-09-28 Thread Rob Nelson
The 'site_configs' module is pretty equivalent to the 'data' module you propose - odd config files, SSL certs, etc. I've been using that successfully at home and work for over a year with r10k without any issues. I'm not using 'data in modules' yet but that would let you combine hiera data with the

Re: [Puppet Users] duplicate resource with inherit and puppet apply

2016-09-28 Thread Henrik Lindberg
On 28/09/16 14:30, Toni Schmidbauer wrote: hi, it's a stupid example but nevertheless it would be interesting to now why the following throws a duplicate resource error under puppet 3.7.4 and puppet 4.2.1 test/manifests/init.pp: # start puppet code class test inherits test::subclass { notify

Re: [Puppet Users] Setting resource dependency from hiera problem

2016-09-28 Thread Henrik Lindberg
On 23/09/16 14:16, Matt Raso-Barnett wrote: require: "Network::If::Static['eth1']" Should be require: "Network::If::Static[eth1]" Since the string form of resource references does not include quotes around the title - thus it is searching for a resource named "'eth1'" instead of one

RE: [Puppet Users] R10K in an existing infrastructure OR How to write yourself into a corner.

2016-09-28 Thread Rilindo Foster
Hi Robert! Is separating the customer data an option? That would let you manage the modules without having to increment them constantly, while pulling the customer data from another location - perhaps from a GIT repository using Puppet's vcsrepo module. - Rilindo -Original Message- F

Re: [Puppet Users] R10K in an existing infrastructure OR How to write yourself into a corner.

2016-09-28 Thread John Warburton
On Thursday, 29 September 2016, Rob Nelson wrote: > The 'site_configs' module is pretty equivalent to the 'data' module you > propose - odd config files, SSL certs, etc. Rob I can't find site_configs on the forge or google. Any pointers? Thanks John -- John Warburton Ph: 0417 299 600 Emai

Re: [Puppet Users] R10K in an existing infrastructure OR How to write yourself into a corner.

2016-09-28 Thread Rob Nelson
Whoops, it's called lab_config in that project (site_config is my private repo for the home lab) and can be found at https://github.com/puppetinabox/lab_config. There's not as much to that since it's a reference project, but for example DNS updates are pushed out every 15 minutes from it (agents ch