summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2013-09-23 12:17:04 -0300
committerSilvio Rhatto <rhatto@riseup.net>2013-09-23 12:17:04 -0300
commita177c98309fb667f4c2a6455f9ee3c7652343c99 (patch)
treea74b78472aad162874de566f3500ac0cb2d99cec
parentaa5f1db5f6da0f5e8d3b5c263cc655a090f85c9f (diff)
downloadpuppet-mail-a177c98309fb667f4c2a6455f9ee3c7652343c99.tar.gz
puppet-mail-a177c98309fb667f4c2a6455f9ee3c7652343c99.tar.bz2
Mlmmj cleanup
-rw-r--r--manifests/mlmmj.pp9
1 files changed, 2 insertions, 7 deletions
diff --git a/manifests/mlmmj.pp b/manifests/mlmmj.pp
index a456cf4..2ef7d4f 100644
--- a/manifests/mlmmj.pp
+++ b/manifests/mlmmj.pp
@@ -23,20 +23,15 @@ class mail::mlmmj(
require => User['mlmmj'],
}
+ # This cronjob is already set by the debian package
cron { 'mlmmj-maintd':
command => '/usr/bin/mlmmj-maintd -F -d /var/spool/mlmmj',
user => mlmmj,
hour => "*",
minute => "*/2",
- ensure => present,
+ ensure => absent,
require => User['mlmmj'],
}
mail::mlmmj::domain { "${subdomain}.${domain}": }
-
- # TODO: remove in the future
- postfix::virtual_regexp_snippet { "mlmmj_virtual_regexp":
- ensure => absent,
- content => template('mail/mlmmj/virtual_regexp.erb'),
- }
}