[Puppet Users] class level notify

2016-01-12 Thread Johan Martinez
I want to notify a service whenever certain config files change. Rather than putting notify function in every resource, can class level notify with chaining arrow/tilda work here? I am referring to https://docs.puppetlabs.com/puppet/latest/reference/lang_relationships.html#syntax-chaining-arro

[Puppet Users] Adding property or parameter to existing core types

2015-12-22 Thread Johan Martinez
Would it be possible to add a new property or parameter to existing core type? I found documentation on adding new types, but not on extending existing types with new property/parameters. Any help on how it can be done would be appreciated. thanks, jM -- You received this message because yo

Re: [Puppet Users] Puppet require - failure handling

2014-01-07 Thread Johan Martinez
Thanks Jose! On Sunday, January 5, 2014 11:27:50 AM UTC-8, Jose Luis Ledesma wrote: > > Clases WordPress requiere both MySQL and apache, so no resource of > WordPress will be "executed" if any of them fails -- You received this message because you are subscribed to the Google Groups "Puppet U

[Puppet Users] Cloud provisioning using Open Source Puppet

2014-01-05 Thread Johan Martinez
I am looking for Open Source Puppet solution that will help in launching and managing ec2 instances, RDS instances, elastic cache instances. I think Puppet Enterprise supports AWS out of the box, but I am confused by Puppet Open Source support. Are there any puppetlabs modules that would hep i

[Puppet Users] Puppet require - failure handling

2014-01-05 Thread Johan Martinez
If I define a wordpress class with require functions as below: class wordpress { require apache require mysql ... } Then would it run even if apache or mysql classes fail for some reason? Also, if apache class returns an error, would mysql class run get triggered or Puppet would exit after apa