summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeLutin <gabster@lelutin.ca>2018-12-10 20:16:05 +0000
committerLeLutin <gabster@lelutin.ca>2018-12-10 20:16:05 +0000
commitcb49c63dc54d124db1a07c758f2f7f303d23ee5d (patch)
tree0ba5991dfc96a257b7205a1840a4a4c560f877ec
parent6743a08b90a118130edd3e59449c5b389fb1796e (diff)
parente4f8bbc2cda9c85c5c9a781a9be910ac053b828c (diff)
Merge branch 'master' into 'master'
small bugfixes See merge request shared-puppet-modules-group/postfix!21
-rw-r--r--manifests/init.pp4
1 files changed, 3 insertions, 1 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index d298183..3637cdd 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -77,10 +77,12 @@ class postfix(
'Debian': {
$master_cf_template = "postfix/master.cf.debian-${::operatingsystemmajrelease}.erb"
+ $postfix_seltype = undef
}
'Ubuntu': {
$master_cf_template = 'postfix/master.cf.debian-sid.erb'
+ $postfix_seltype = undef
}
default: {
@@ -99,7 +101,7 @@ class postfix(
include postfix::anonsasl
}
# this global variable needs to get parameterized as well
- if $::header_checks == 'yes' {
+ if $manage_header_checks == 'yes' {
include postfix::header_checks
}
if $manage_tls_policy == 'yes' {