summaryrefslogtreecommitdiff
path: root/manifests/quota.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/quota.pp')
-rw-r--r--manifests/quota.pp9
1 files changed, 9 insertions, 0 deletions
diff --git a/manifests/quota.pp b/manifests/quota.pp
new file mode 100644
index 0000000..1ced2f2
--- /dev/null
+++ b/manifests/quota.pp
@@ -0,0 +1,9 @@
+class dovecot::quota {
+ file{'/usr/libexec/dovecot/quota-warning.sh':
+ source => [ "puppet://$server/modules/site-dovecot/quota/quota-warning.sh",
+ "puppet://$server/modules/dovecot/quota/quota-warning.sh" ],
+ require => Package['dovecot'],
+ before => Service['dovecot'],
+ owner => root, group => 0, mode => 0755;
+ }
+}