Re: [Puppet Users] learning, but puppet does not detect change

2014-02-05 Thread Christopher Wood
(inline) On Wed, Feb 05, 2014 at 05:51:37AM -0800, Sudheendra S.N wrote: >Even i am observing same problem. Puppet Version : 2.7.25 >I just tried to create a file in /tmp folder, but after executing puppet >agent --test --server --debug, i could not see any file created >in /tmp.

Re: [Puppet Users] learning, but puppet does not detect change

2014-02-05 Thread Sudheendra S.N
Even i am observing same problem. Puppet Version : 2.7.25 I just tried to create a file in /tmp folder, but after executing puppet agent --test --server --debug, i could not see any file created in /tmp. Attaching the debug text. Below is my class/module: class hosts { file { "tmp/ho

Re: [Puppet Users] learning, but puppet does not detect change

2011-03-05 Thread Matthew Black
I think there is some confusion, where is the ntp manifest located? Is it in its own module or the site manifest directory. If its the latter, then you need to import that manifest into the site manifest. If its a module, then you still need to do the import for the module. Try updating your site

Re: [Puppet Users] learning, but puppet does not detect change

2011-03-04 Thread mark bradley
Hi, My site.pp: [root@S manifests]# cat /etc/puppet/manifests/site.pp import "nodes.pp" [root@S manifests]# I copied ntp.pp into init.pp as you've suggested: [root@S manifests]# cp ntp.pp init.pp [root@S manifests]# diff ntp.pp init.pp [root@S manifests]# I started the server as follows: [root@

Re: [Puppet Users] learning, but puppet does not detect change

2011-02-26 Thread yzhk...@gmail.com
1、site.pp: import "nodes.pp" 2、ntp.ppshould be $module_path/manifests/init.pp 3、puppet agent --test --server=S -d -v Have a look at http://projects.puppetlabs.com/projects/puppet/wiki/Puppet_Best_Practice On Sun, Feb 27, 2011 at 8:01 AM, mark bradley wrote: > Hi, > > I've just installed

[Puppet Users] learning, but puppet does not detect change

2011-02-26 Thread mark bradley
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 ru