Parent Directory
|
Revision Log
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 |