summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2009-12-07 22:58:52 +0100
committermh <mh@immerda.ch>2009-12-07 22:58:52 +0100
commit99c42d4125e09b4e0cb1b2a4b995adfc6f0bb032 (patch)
tree173ddb2b730e39516387841be4f7765595e1bb41
parentf78a7b1d773b512b02f7b914c452660f38cc15f9 (diff)
fix path lookups
-rw-r--r--manifests/expire.pp4
-rw-r--r--manifests/sieve.pp4
2 files changed, 4 insertions, 4 deletions
diff --git a/manifests/expire.pp b/manifests/expire.pp
index 8cdf17f..66c8a2e 100644
--- a/manifests/expire.pp
+++ b/manifests/expire.pp
@@ -3,8 +3,8 @@ class dovecot::expire {
file{'/etc/dovecot-expire.conf':
source => [ "puppet://$server/modules/site-dovecot/expire/${fqdn}/dovecot-expire.conf",
"puppet://$server/modules/site-dovecot/expire/dovecot-expire.conf",
- "puppet://$server/modules/site/expire/${operatingsystem}/dovecot-expire.conf",
- "puppet://$server/modules/site/expire/dovecot-expire.conf" ],
+ "puppet://$server/modules/dovecot/expire/${operatingsystem}/dovecot-expire.conf",
+ "puppet://$server/modules/dovecot/expire/dovecot-expire.conf" ],
require => Package['dovecot'],
notify => Service['dovecot'],
owner => root, group => 0, mode => 0600;
diff --git a/manifests/sieve.pp b/manifests/sieve.pp
index 4b5068d..351e87c 100644
--- a/manifests/sieve.pp
+++ b/manifests/sieve.pp
@@ -12,8 +12,8 @@ class dovecot::sieve {
file{'/var/lib/dovecot-sieve/global':
source => [ "puppet://$server/modules/site-dovecot/sieve/${fqdn}/global/",
"puppet://$server/modules/site-dovecot/sieve/global/",
- "puppet://$server/modules/site/sieve/${operatingsystem}/global/",
- "puppet://$server/modules/site/sieve/global/",
+ "puppet://$server/modules/dovecot/sieve/${operatingsystem}/global/",
+ "puppet://$server/modules/dovecot/sieve/global/",
"puppet://$server/modules/common/empty/" ],
ensure => directory,
recurse => true,