4

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']
}
bain
  • 12,200
karthick87
  • 84,513

1 Answers1

2

As all the existing docs didn't help you it's quite unlikely that just writing a new one will work better for you.

Instead please follow the explanation given in the Ubuntu Server Guide and tell us what doesn't work for you and what additional questions you have.