Parent Directory
|
Revision Log
clean and make puppet-lint happy for postgrey module
1 | class postgrey { |
2 | package { 'postgrey': } |
3 | |
4 | service { 'postgrey': |
5 | subscribe => Package['postgrey'], |
6 | } |
7 | |
8 | File { |
9 | notify => Service['postgrey'], |
10 | require => Package['postgrey'], |
11 | } |
12 | |
13 | file { |
14 | '/etc/sysconfig/postgrey': |
15 | content => template('postgrey/postgrey.sysconfig'); |
16 | '/etc/postfix/postgrey_whitelist_clients.local': |
17 | content => template('postgrey/whitelist_clients.local'); |
18 | } |
19 | } |
ViewVC Help | |
Powered by ViewVC 1.1.28 |