~mathiaz/+junk/uec-ec2-puppet-config-passenger

« back to all changes in this revision

Viewing changes to modules/puppet/manifests/init.pp

  • Committer: Mathias Gug
  • Date: 2010-03-17 20:21:59 UTC
  • Revision ID: mathias.gug@canonical.com-20100317202159-w84ev98l2m8q6j9y
Add initial puppet module. Provide a puppetmaster class.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
class puppet::master {
 
3
    package { 
 
4
        "puppetmaster":
 
5
            ensure => installed,
 
6
            notify => Service[puppetmaster];
 
7
    }
 
8
    service { 
 
9
        "puppetmaster":
 
10
            ensure => running,
 
11
            enable => true;
 
12
    }
 
13
}