On 07/01/11 14:54, luke.bigum wrote:
I created the tree /etc/puppet/modules/ntp/manifests/ and created an
init.pp with this content:

class ntp {
          package { "ntp": ensure =>  installed }
          service { "ntpd": ensure =>  stopped }

}

Hi Jonathan,

How do you know the client isn't doing what you told it if there are
no error messages? What classes are on your client? Run this for a
list:

cat /var/lib/puppet/classes.txt

A more comprehensive check is to list all the resources that can
execute on your client with:

puppetd --test --noop --evaltrace

Does the ntp stuff appear in that list? If it does then you've
probably got the ntp package already installed and the ntp service
already stopped, so Puppet doesn't have to do anything :)


Thanks for your response. Sorry, I realised I made a mistake in my message. There *was* an error message, as follows:

# /usr/sbin/puppetd --server puppet.resnet.bris.ac.uk --test --evaltrace

err: Could not retrieve catalog from remote server: Error 400 on SERVER: Could not parse for environment production: No file(s) found for import of 'ntp' at /etc/puppet/manifests/site.pp:6
warning: Not using cache on failed catalog
err: Could not retrieve catalog; skipping run

To reiterate, my 'ntp' class is defined in /etc/puppet/modules/ntp/manifests/init.pp and I have defined modulepath in my puppet.conf. The ntp module is imported in site.pp and included in nodes.pp.

So it looks like my puppetmaster isn't correctly picking up my modulepath. Any ideas?

Also, is there a way to get more verbose logging on the puppetmaster? Currently I only have masterhttp.log, but I would like to enable debug logging to see everything the puppetmaster is doing.

Many thanks,
Jonathan


----------------------------
Jonathan Gazeley
Systems Support Specialist
ResNet | Wireless & VPN Team
IT Services
University of Bristol
----------------------------

--
You received this message because you are subscribed to the Google Groups "Puppet 
Users" group.
To post to this group, send email to puppet-us...@googlegroups.com.
To unsubscribe from this group, send email to 
puppet-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/puppet-users?hl=en.

Reply via email to