Hi, I've just installed Puppet on two CentOS 5.5 servers, "S" for "A". "A" does not have the ntp package installed nor of course ntp running.
The Puppet server is started on "S" with the ntp class from this tutorial: http://bitfieldconsulting.com/puppet-tutorial (included below) however when I run the agent on "A" it don't produce a notice that a change needs to be applied: root@A ~]# puppet agent --test --server=S info: Caching catalog for A.domain.com info: Applying configuration version '1298756440' notice: Finished catalog run in 0.07 seconds [root@A ~]# Apparently it should not notifying me that ntp needs to be installed and started. ntp.pp on S: class ntp { package { "ntp": ensure => installed } service { "ntp": ensure => running } } nodes.pp on S: node A { include ntp } Did I miss some crucial set in the installation or configuration? I know it's seeing the files since if I introduce syntax errors into them Puppet complains. Thanks for any help, Mark -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@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.