On 1/29/16 6:05 PM, Kyle Flavin wrote:
> I'm creating a module, and I want to override the file resource for
> puppet.conf which is defined within a module called "puppet".  The
> resource declaration looks like this:
> 
> |
> # modules/puppet/manifests/init.pp
> classpuppet {
>    ...
>     file {'/etc/puppet/puppet.conf':
>         content =>template('puppet/puppet.conf.erb'),
>     }
>    ...
> }
> |
> 
> 
> I want to override this file resource to provide a customized
> puppet.conf, and I'm trying to do so using inheritance.  My module is
> laid out as follows:
> 
> |
> # modules/foreman-proxy directory
> 
> ├──manifests
> │  ├──init.pp
> │  └──puppet.pp
> └──templates
>     └──puppet.conf.erb
> 
> # init.pp
> classforeman-proxy inherits puppet {
>     include foreman-proxy::puppet
> }
> 
> # puppet.pp
> classforeman-proxy::puppet inherits puppet {
>     file {'/etc/puppet/puppet.conf':
>         content =>template('foreman-proxy/puppet.conf.erb'),
>     }
> }
> 
> |
> 
> When I run this on the client, I get the error:
> |
> Error:Couldnotretrieve catalog fromremote server:Error400on
> SERVER:Couldnotfind scope forforeman-proxy::puppet on node <myservername>
> Warning:Notusingcache on failed catalog
> Error:Couldnotretrieve catalog;skipping run
> |
> 
> What am I doing incorrectly?  Is there a better approach?  I'm trying to
> avoid modifying the existing puppet module, because it's applied across
> many servers.
> 

Hi Kyle,

I think you have a scoping issue, try using the double colons for the
puppet class, such as 'class foreman-proxy::puppet inherits ::puppet'.

You seem to be using inheritance correctly to override a resource,
though you are doing this between two modules. This pattern should be
avoided at all costs and will likely end in tears.

http://docs.puppetlabs.com/guides/style_guide.html#class-inheritance

Suggest that the puppet module manage the puppet.conf.

HTH,
-g

-- 
Garrett Honeycutt
@learnpuppet
Puppet Training with LearnPuppet.com
Mobile: +1.206.414.8658

-- 
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/56ABF94B.7090709%40garretthoneycutt.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to