diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-06-22 11:22:05 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-06-22 11:22:05 -0300 |
commit | 0cbb1a80e4463d8e54bbd50a11593fb179ac67a5 (patch) | |
tree | c6ca9d17fb0e021c150ac257b470533df7028880 /manifests/utils | |
parent | 4d278db5b1ddf06e31cfbcba92da9fe0ca872505 (diff) | |
download | puppet-nodo-0cbb1a80e4463d8e54bbd50a11593fb179ac67a5.tar.gz puppet-nodo-0cbb1a80e4463d8e54bbd50a11593fb179ac67a5.tar.bz2 |
Add nodo::subsystem::mail::msmtp
Diffstat (limited to 'manifests/utils')
-rw-r--r-- | manifests/utils/network/mail.pp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/manifests/utils/network/mail.pp b/manifests/utils/network/mail.pp index 13c8483..ea1d580 100644 --- a/manifests/utils/network/mail.pp +++ b/manifests/utils/network/mail.pp @@ -10,11 +10,16 @@ class nodo::utils::network::mail ( 'bogofilter', 'fetchmail', 'procmail', - 'msmtp', ]: ensure => $ensure, } + if !defined(Package['msmtp']) { + package { 'msmtp': + ensure => present, + } + } + package { [ 'mutt-patched', ]: |