diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-09-23 19:07:55 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-09-23 19:07:55 -0300 |
commit | db03a0e084e5f15fe67a7de1d4fbec0d9a404536 (patch) | |
tree | 03688fad21f46b9b3e2ff7bc8af118e071716eb9 /manifests/utils/network | |
parent | 0f83c2aebe89b53a939c2f437f827bfe9e90e02c (diff) | |
download | puppet-nodo-db03a0e084e5f15fe67a7de1d4fbec0d9a404536.tar.gz puppet-nodo-db03a0e084e5f15fe67a7de1d4fbec0d9a404536.tar.bz2 |
Utils: split network, rename personal to bundle
Diffstat (limited to 'manifests/utils/network')
-rw-r--r-- | manifests/utils/network/mail.pp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/manifests/utils/network/mail.pp b/manifests/utils/network/mail.pp new file mode 100644 index 0000000..02287c3 --- /dev/null +++ b/manifests/utils/network/mail.pp @@ -0,0 +1,24 @@ +class nodo::utils::network::mail { + # Mail + package { [ + 'mutt', + 'mutt-patched', + 'muttprofile', + 'notmuch-mutt', + 'offlineimap', + 'newsbeuter', + 'bogofilter', + 'fetchmail', + 'procmail', + 'msmtp', + ]: + ensure => installed, + } + + # Fix: ensure that fetchmail is not a service + service { 'fetchmail': + ensure => stopped, + enable => false, + require => Package['fetchmail'], + } +} |