I would like to setup Central Management Server (PUPPET) to manage all clients. I have read many documentations, but none of them was helpful. Can anyone explain setting up puppet server in detail?
Where we have to create the following files in server or in client?
Now setup some resources for apache2. Create a file
/etc/puppet/manifests/site.pp
containing the following:package { 'apache2': ensure => installed } service { 'apache2': ensure => true, enable => true, require => Package['apache2'] }
Puppetmaster
and/etc/puppet/
seems to point to a client. – Rinzwind Aug 29 '11 at 17:02/etc/puppet/manifests
are only used at the server. – Florian Diesch Aug 29 '11 at 18:14puppetd --test --debug
and post the contents? – jrg Sep 12 '11 at 12:13