diff options
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/subsystems/utils/network.pp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/manifests/subsystems/utils/network.pp b/manifests/subsystems/utils/network.pp index eb6f9f6..b0dc941 100644 --- a/manifests/subsystems/utils/network.pp +++ b/manifests/subsystems/utils/network.pp @@ -55,6 +55,13 @@ class utils::network inherits utils::network::minimal { ensure => installed, } + # Fix: ensure that fetchmail is not a service + service { 'fetchmail': + ensure => stopped, + enable => false, + require => Package['fetchmail'], + } + # Old packages # About firegpg, see http://tails.boum.org/bugs/FireGPG_may_be_unsafe/ package { [ 'silc', 'twinkle', 'konqueror', 'transmission', 'amule', 'epiphany-browser', |