diff options
author | Micah Anderson <micah@riseup.net> | 2013-04-23 15:59:44 -0400 |
---|---|---|
committer | varac <varacanero@zeromail.org> | 2013-07-09 14:16:59 +0200 |
commit | bb559881644c8207a7d2791655f535cf9bcd61be (patch) | |
tree | 114b942c3ba7921ecd031babb65aa5c737ffbc9c /puppet/modules/site_postfix/manifests | |
parent | 9159f1e023e0f38bb9b8bdcfb69f77823184f6ec (diff) |
update postfix module to new shared version for parameterized classes, and other
2.7 updates
update site_postfix::mx to use parameterized classes
Diffstat (limited to 'puppet/modules/site_postfix/manifests')
-rw-r--r-- | puppet/modules/site_postfix/manifests/mx.pp | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/puppet/modules/site_postfix/manifests/mx.pp b/puppet/modules/site_postfix/manifests/mx.pp index 4bab7722..2bf844bf 100644 --- a/puppet/modules/site_postfix/manifests/mx.pp +++ b/puppet/modules/site_postfix/manifests/mx.pp @@ -42,13 +42,8 @@ class site_postfix::mx { managehome => true, } - user { 'vmail': - ensure => present, - comment => 'Leap Mailspool', - home => '/var/mail/vmail', - shell => '/bin/false', - managehome => true, + class { 'postfix': + root_mail_recipient => $root_mail_recipient, + smtp_listen => 'all' } - - include ::postfix } |