projects
/
mirror
/
dsa-puppet.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Blacklist MAILER-DAEMON@healthtorpedo.com
[mirror/dsa-puppet.git]
/
modules
/
postgrey
/
manifests
/
init.pp
1
class postgrey {
2
3
package { 'postgrey':
4
ensure => installed
5
}
6
7
service { 'postgrey':
8
ensure => running,
9
require => Package['postgrey']
10
}
11
12
file { '/etc/default/postgrey':
13
source => 'puppet:///modules/postgrey/default',
14
require => Package['postgrey'],
15
notify => Service['postgrey']
16
}
17
}