diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-09-13 18:42:50 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-09-13 18:42:50 -0300 |
commit | aa5f1db5f6da0f5e8d3b5c263cc655a090f85c9f (patch) | |
tree | 46603d112b712000c1bcfc2150c6e8d1e79c84e5 | |
parent | 80f47b9c7164991e471fba1e01000cf002562d31 (diff) | |
download | puppet-mail-aa5f1db5f6da0f5e8d3b5c263cc655a090f85c9f.tar.gz puppet-mail-aa5f1db5f6da0f5e8d3b5c263cc655a090f85c9f.tar.bz2 |
Setting up mlmmj cronjob
-rw-r--r-- | manifests/mlmmj.pp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/manifests/mlmmj.pp b/manifests/mlmmj.pp index 47250bb..a456cf4 100644 --- a/manifests/mlmmj.pp +++ b/manifests/mlmmj.pp @@ -23,14 +23,14 @@ class mail::mlmmj( require => User['mlmmj'], } - #cron { 'mlmmj-maintd': - # command => '/usr/bin/mlmmj-maintd -F -d /var/spool/mlmmj', - # user => root, - # hour => "*", - # minute => "*/2", - # ensure => present, - # require => User['mlmmj'], - #} + cron { 'mlmmj-maintd': + command => '/usr/bin/mlmmj-maintd -F -d /var/spool/mlmmj', + user => mlmmj, + hour => "*", + minute => "*/2", + ensure => present, + require => User['mlmmj'], + } mail::mlmmj::domain { "${subdomain}.${domain}": } |