summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--manifests/debian.pp9
1 files changed, 7 insertions, 2 deletions
diff --git a/manifests/debian.pp b/manifests/debian.pp
index 82ff579..1866726 100644
--- a/manifests/debian.pp
+++ b/manifests/debian.pp
@@ -1,8 +1,13 @@
+# debian-specific package-names and config file paths
class dovecot::debian inherits dovecot::base {
- Package['dovecot'] { name => [ 'dovecot-common', 'dovecot-imapd', 'dovecot-pop3d' ] }
+ Package['dovecot'] { name => 'dovecot-common' }
+
+ package { ['dovecot-imapd', 'dovecot-pop3d' ]:
+ ensure => installed
+ }
File['/etc/dovecot.conf'] { path => '/etc/dovecot/dovecot.conf' }
}
-
+