summaryrefslogtreecommitdiff
path: root/manifests/config/file.pp
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2012-06-27 12:18:10 -0400
committerMicah Anderson <micah@riseup.net>2012-06-27 12:18:10 -0400
commitdca386b40c22892245e0a8b9b6ab4853fca1412a (patch)
tree841c88e8ba6c59ed53917ad5b5f3187e809e10da /manifests/config/file.pp
parentcd7d5712f043e9fcb135e34a77d8d8bec4838b38 (diff)
switch to 2.7 requirement of underscores instead of hyphens
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}"