summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2016-06-18 10:18:39 -0300
committerSilvio Rhatto <rhatto@riseup.net>2016-06-18 10:18:39 -0300
commit1698e9fdc5311b3aa56bb9a4227d7c6047b078a5 (patch)
tree4859f62beedceeb3d21f916a5658eb0049ce60d8
parent27ed49eafec19568d5a05aa068968b5f6c251a77 (diff)
downloadpuppet-mail-1698e9fdc5311b3aa56bb9a4227d7c6047b078a5.tar.gz
puppet-mail-1698e9fdc5311b3aa56bb9a4227d7c6047b078a5.tar.bz2
Do not manage ssl cert
-rw-r--r--manifests/tls.pp18
1 files changed, 9 insertions, 9 deletions
diff --git a/manifests/tls.pp b/manifests/tls.pp
index b634386..5a1d60d 100644
--- a/manifests/tls.pp
+++ b/manifests/tls.pp
@@ -10,13 +10,13 @@ class mail::tls {
$mail_virtual = hiera('mail::virtual', false)
# SSL certificate
- ssl::cert { "${::domain}":
- group => 'postfix',
- privmode => '0640',
- main => true,
- notify => $mail_virtual ? {
- false => Service['postfix'],
- default => Service['postfix', 'dovecot'],
- }
- }
+ #ssl::cert { "${::domain}":
+ # group => 'postfix',
+ # privmode => '0640',
+ # main => true,
+ # notify => $mail_virtual ? {
+ # false => Service['postfix'],
+ # default => Service['postfix', 'dovecot'],
+ # }
+ #}
}