diff --git a/dovecot/manifests/dovecot2.pp b/dovecot/manifests/dovecot2.pp index 726bc54..3b1bf73 100644 --- a/dovecot/manifests/dovecot2.pp +++ b/dovecot/manifests/dovecot2.pp @@ -12,12 +12,12 @@ class dovecot::server::v2 { service { "dovecot": ensure => running, enable => true, - require => File["/etc/dovecot/conf.d/99-local.conf"], + require => File["/etc/dovecot/conf.d/98-puppet.conf"], } - file { "/etc/dovecot/conf.d/99-local.conf": + file { "/etc/dovecot/conf.d/98-puppet.conf": ensure => present, - content => template("dovecot/local.conf.erb"), + content => template("dovecot/puppet.conf.erb"), mode => "0644", owner => "root", group => "root", diff --git a/dovecot/templates/local.conf.erb b/dovecot/templates/puppet.conf.erb similarity index 100% rename from dovecot/templates/local.conf.erb rename to dovecot/templates/puppet.conf.erb