/[adm]/puppet/modules/icecream/manifests/init.pp
ViewVC logotype

Contents of /puppet/modules/icecream/manifests/init.pp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2460 - (show annotations) (download)
Mon Feb 20 18:34:23 2012 UTC (11 years, 7 months ago) by misc
File size: 535 byte(s)
cleaning of icecream module
1 class icecream {
2 class scheduler {
3 package { 'icecream-scheduler': }
4
5 service { 'icecream-scheduler':
6 subscribe => Package['icecream-scheduler'],
7 }
8 }
9
10 class client_common {
11 package { 'icecream': }
12
13 service { 'icecream':
14 subscribe => Package['icecream'],
15 }
16 }
17
18 define client($host => '') {
19 include icecream::client_common
20 file { '/etc/sysconfig/icecream':
21 content => template('icecream/sysconfig'),
22 }
23 }
24 }

  ViewVC Help
Powered by ViewVC 1.1.28