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.ppcontaining the following:package { 'apache2': ensure => installed } service { 'apache2': ensure => true, enable => true, require => Package['apache2'] }