blob: 7a6f6389858205499b74e3ab8921a1108d3457d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class postfix {
package { postfix: }
service { 'postfix':
subscribe => Package['postfix'],
}
file { '/etc/postfix/main.cf':
require => Package['postfix'],
content => '',
notify => Service['postfix'],
}
}
|