summaryrefslogtreecommitdiff
path: root/manifests/config/file.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/config/file.pp')
-rw-r--r--manifests/config/file.pp10
1 files changed, 5 insertions, 5 deletions
diff --git a/manifests/config/file.pp b/manifests/config/file.pp
index 39c6cc3..0fe777f 100644
--- a/manifests/config/file.pp
+++ b/manifests/config/file.pp
@@ -45,15 +45,15 @@ define dovecot::config::file (
# the $content variable is 'absent' by default, so if the user doesn't
# specify anything for $content, then the following will be used, searching
# from the first source line until a file is found that matches. We use the
- # standard search prioritizing the site-dovecot module first
+ # standard search prioritizing the site_dovecot module first
case $content {
'absent': {
$real_source = $source ? {
'absent' => [
- "puppet:///modules/site-dovecot/config/${fqdn}/${name}",
- "puppet:///modules/site-dovecot/config/${operatingsystem}/${lsbdistcodename}/${name}",
- "puppet:///modules/site-dovecot/config/${operatingsystem}/${name}",
- "puppet:///modules/site-dovecot/config/${name}",
+ "puppet:///modules/site_dovecot/config/${fqdn}/${name}",
+ "puppet:///modules/site_dovecot/config/${operatingsystem}/${lsbdistcodename}/${name}",
+ "puppet:///modules/site_dovecot/config/${operatingsystem}/${name}",
+ "puppet:///modules/site_dovecot/config/${name}",
"puppet:///modules/dovecot/config/${operatingsystem}/${lsbdistcodename}/${name}",
"puppet:///modules/dovecot/config/${operatingsystem}/${name}",
"puppet:///modules/dovecot/config/${name}"