From 17570b8e36195697df6dfd70e74c902a1b07dc88 Mon Sep 17 00:00:00 2001 From: Ossi Herrala Date: Thu, 20 Sep 2012 08:47:51 +0000 Subject: [PATCH] Rename puppet's Dovecot 2 config from 99-local.conf to 98-puppet.conf to make room for local fileserver file 99-local.conf --- dovecot/manifests/dovecot2.pp | 6 +++--- dovecot/templates/{local.conf.erb => puppet.conf.erb} | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename dovecot/templates/{local.conf.erb => puppet.conf.erb} (100%) 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