smtpd: Fix mailer.conf for OpenBSD 5.9.

This commit is contained in:
Timo Makinen 2016-04-06 10:44:01 +03:00
parent 35027cedb0
commit 0e59055357
2 changed files with 11 additions and 6 deletions

View file

@ -107,12 +107,12 @@ class smtpd(
$mda = '/usr/local/bin/procmail -Y -t -f %{sender}'
file { '/etc/mailer.conf':
ensure => present,
mode => '0644',
owner => 'root',
group => 'wheel',
source => 'puppet:///modules/smtpd/mailer.conf',
before => Service[$service],
ensure => present,
mode => '0644',
owner => 'root',
group => 'wheel',
content => template('smtpd/mailer.conf.erb'),
before => Service[$service],
}
service { 'sendmail':