diff options
author | Micah Anderson <micah@riseup.net> | 2013-04-23 15:59:44 -0400 |
---|---|---|
committer | Micah Anderson <micah@leap.se> | 2013-07-25 13:45:10 -0400 |
commit | 9c08bdad1cbb5c9c71ef42b99d7ec491ed084269 (patch) | |
tree | 7bed381d8801f5c93f6db95176a0a21a968ba968 /puppet/modules | |
parent | fd009ffef849986a691cf98aa1eefc21c3a72d9f (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')
m--------- | puppet/modules/postfix | 0 | ||||
-rw-r--r-- | puppet/modules/site_postfix/manifests/mx.pp | 11 |
2 files changed, 3 insertions, 8 deletions
diff --git a/puppet/modules/postfix b/puppet/modules/postfix -Subproject 881a59ac62684028a7f4cb358e3592efc3ae99a +Subproject 8e43dc85da5a5e45e88aef5f7c32c9cc1c35201 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 } |