diff options
author | drebs <drebs@riseup.net> | 2011-03-12 18:04:39 -0300 |
---|---|---|
committer | drebs <drebs@riseup.net> | 2011-03-12 18:04:39 -0300 |
commit | 6d0cc2a36b1718a737bc88f08d7101eb101ee00b (patch) | |
tree | 5837ae00ae6dbba38454958ab78ca1a76da532ca /manifests/admin-stage2.pp | |
parent | c250722de28cf556005b0d4103854d13cf781b56 (diff) | |
download | puppet-bootstrap-6d0cc2a36b1718a737bc88f08d7101eb101ee00b.tar.gz puppet-bootstrap-6d0cc2a36b1718a737bc88f08d7101eb101ee00b.tar.bz2 |
refactoring stages
Diffstat (limited to 'manifests/admin-stage2.pp')
-rw-r--r-- | manifests/admin-stage2.pp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/manifests/admin-stage2.pp b/manifests/admin-stage2.pp new file mode 100644 index 0000000..4d81bfb --- /dev/null +++ b/manifests/admin-stage2.pp @@ -0,0 +1,14 @@ +import "config.pp" +import "git" + +include default_conf +include git + +# puppet config +package { [ "puppet", "puppetmaster" ]: ensure => installed, } + +service { "puppetmaster": + ensure => stopped, + require => Package["puppetmaster"] +} + |