diff options
| author | Micah <micah@leap.se> | 2015-12-17 15:51:21 -0500 | 
|---|---|---|
| committer | Micah <micah@leap.se> | 2015-12-17 15:51:21 -0500 | 
| commit | 5d0562cfa4d381c4819e88bb6eb825a84083693b (patch) | |
| tree | 94e6207da9d1dcfe9c6ea83ad6c7087fb6da0903 | |
| parent | ee7007de216c3ae4b2b15a613a60fd3b6d712fd5 (diff) | |
Make sure values that might get set incorrectly, due to preseed or
debconf selections, are set correctly (#7478)
Change-Id: I3bd261fd6fe27bbf10b8994ffff9f8b7be5b9de0
| -rw-r--r-- | puppet/modules/site_postfix/manifests/mx.pp | 9 | 
1 files changed, 9 insertions, 0 deletions
diff --git a/puppet/modules/site_postfix/manifests/mx.pp b/puppet/modules/site_postfix/manifests/mx.pp index 75378480..d456baf3 100644 --- a/puppet/modules/site_postfix/manifests/mx.pp +++ b/puppet/modules/site_postfix/manifests/mx.pp @@ -71,6 +71,15 @@ class site_postfix::mx {        value => 'unix:/run/clamav/milter.ctl,unix:/var/run/opendkim/opendkim.sock';      'milter_default_action':        value => 'accept'; +    # Make sure that the right values are set, these could be set to different +    # things on install, depending on preseed or debconf options +    # selected (see #7478) +    'relay_transport': +      value => 'relay'; +    'default_transport': +      value => 'smtp'; +    'mailbox_command': +      value => '';    }    include site_postfix::mx::smtpd_checks  | 
