diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-06-18 10:18:39 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-06-18 10:18:39 -0300 |
commit | 1698e9fdc5311b3aa56bb9a4227d7c6047b078a5 (patch) | |
tree | 4859f62beedceeb3d21f916a5658eb0049ce60d8 /manifests | |
parent | 27ed49eafec19568d5a05aa068968b5f6c251a77 (diff) | |
download | puppet-mail-1698e9fdc5311b3aa56bb9a4227d7c6047b078a5.tar.gz puppet-mail-1698e9fdc5311b3aa56bb9a4227d7c6047b078a5.tar.bz2 |
Do not manage ssl cert
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/tls.pp | 18 |
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'], + # } + #} } |