Back

Explore Courses Blog Tutorials Interview Questions
+1 vote
2 views
in DevOps and Agile by (29.3k points)

I have

CentOS 6 Puppet Master

CentOS 6 Puppet Client

In Master have one module:

 puppet module list

/etc/puppet/modules

âââ mstanislav-yum (v1.0.0)

So I want to apply the same module to my puppet client but I can't or I don't know why

root@puppetclient: puppet agent --test

Info: Retrieving plugin

Info: Caching catalog for puppetclient

Info: Applying configuration version '1355737643'

Finished catalog run in 0.10 seconds

but there are not many changes to the client: Any idea?

1 Answer

0 votes
by (50.2k points)

The issue occurs because you didn't declare the module. For that, you need to add the following code to your site.pp

node 'fqdn of client' {

  include yum

Then you can run puppet agent -t to see it in action. 

Related questions

0 votes
1 answer
asked Jan 24, 2021 in DevOps and Agile by dev_sk2311 (45k points)
0 votes
1 answer
0 votes
1 answer

Browse Categories

...