diff options
Diffstat (limited to 'manifests/dovecot.pp')
-rw-r--r-- | manifests/dovecot.pp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/manifests/dovecot.pp b/manifests/dovecot.pp index 0ced8e1..20364fe 100644 --- a/manifests/dovecot.pp +++ b/manifests/dovecot.pp @@ -6,12 +6,12 @@ class mail::dovecot { } file { "/etc/dovecot/dovecot.conf": - ensure => present, - owner => root, - group => vmail, - mode => 0644, - source => "puppet://$server/modules/mail/dovecot/dovecot.conf", - notify => Service['dovecot'], + ensure => present, + owner => root, + group => vmail, + mode => 0644, + content => template('mail/dovecot/dovecot.conf.erb'), + notify => Service['dovecot'], } file { "/etc/dovecot/dovecot-sql.conf": |