summaryrefslogtreecommitdiff
path: root/manifests
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2011-11-13 12:23:45 -0500
committerMicah Anderson <micah@riseup.net>2011-11-13 12:23:45 -0500
commit4694e77991dadf1bcc54fd9ff5b7651fcc6fc87d (patch)
treefe9376b597bd0313f901eb947d08a241deb53e81 /manifests
parent1b90c659513b4bee5bcdfd43114c1ee774c5677b (diff)
set a default destination
Diffstat (limited to 'manifests')
-rw-r--r--manifests/config/file.pp2
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/config/file.pp b/manifests/config/file.pp
index 78e6a28..fe93500 100644
--- a/manifests/config/file.pp
+++ b/manifests/config/file.pp
@@ -11,7 +11,7 @@ define dovecot::config::file (
# implement different locations, we can trigger here off of operatingsystem
# and change the 'config_dir' path in base.pp to just be /etc/dovecot
$real_destination = $destination ? {
- 'absent' => "${config_dir}/${name}",
+ 'absent' => "/etc/dovecot/conf.d/${name}",
default => $destination
}